X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=_source%2Fcore%2Feditor_basic.js;h=ec90bf72107e7834fc36ae5657487f0b467d3ab1;hb=refs%2Ftags%2Fv3.2.1;hp=3c4c5e32e5b78da2c925b987b7f9925ca0dfac46;hpb=059b4c2fef02528bf1af189f7996e80652faddfb;p=ckeditor.git diff --git a/_source/core/editor_basic.js b/_source/core/editor_basic.js index 3c4c5e3..ec90bf7 100644 --- a/_source/core/editor_basic.js +++ b/_source/core/editor_basic.js @@ -36,16 +36,18 @@ if ( !CKEDITOR.editor ) * instance. * @param {Number} [mode] The mode in which the element is linked to this * instance. + * @param {String} [data] Since 3.3. Initial value for the instance. * @augments CKEDITOR.event * @example */ - CKEDITOR.editor = function( instanceConfig, element, mode ) + CKEDITOR.editor = function( instanceConfig, element, mode, data ) { this._ = { // Save the config to be processed later by the full core code. instanceConfig : instanceConfig, - element : element + element : element, + data : data }; /** @@ -126,10 +128,11 @@ if ( !CKEDITOR.editor ) * @param {Object} [config] The specific configurations to apply to this * editor instance. Configurations set here will override global CKEditor * settings. + * @param {String} [data] Since 3.3. Initial value for the instance. * @returns {CKEDITOR.editor} The editor instance created. * @example */ - CKEDITOR.editor.appendTo = function( elementOrId, config ) + CKEDITOR.editor.appendTo = function( elementOrId, config, data ) { var element = elementOrId; if ( typeof element != 'object' ) @@ -141,7 +144,7 @@ if ( !CKEDITOR.editor ) } // Create the editor instance. - return new CKEDITOR.editor( config, element, CKEDITOR.ELEMENT_MODE_APPENDTO ); + return new CKEDITOR.editor( config, element, CKEDITOR.ELEMENT_MODE_APPENDTO, data ); }; CKEDITOR.editor.prototype =