1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
/**
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
CKEDITOR.plugins.add( 'flash', {
init: function() {
CKEDITOR.error( 'editor-plugin-deprecated', { plugin: 'flash' } );
}
} );
CKEDITOR.tools.extend( CKEDITOR.config, {
/**
* Save as `<embed>` tag only. This tag is unrecommended.
*
* **Note**: This option is deprecated due to the plugin being removed.
*
* @deprecated 4.17.0
* @cfg {Boolean} [flashEmbedTagOnly=false]
* @member CKEDITOR.config
*/
flashEmbedTagOnly: false,
/**
* Add `<embed>` tag as alternative: `<object><embed></embed></object>`.
*
* **Note**: This option is deprecated due to the plugin being removed.
*
* @deprecated 4.17.0
* @cfg {Boolean} [flashAddEmbedTag=false]
* @member CKEDITOR.config
*/
flashAddEmbedTag: true,
/**
* Use {@link #flashEmbedTagOnly} and {@link #flashAddEmbedTag} values on edit.
*
* **Note**: This option is deprecated due to the plugin being removed.
*
* @deprecated 4.17.0
* @cfg {Boolean} [flashConvertOnEdit=false]
* @member CKEDITOR.config
*/
flashConvertOnEdit: false
} );
|