| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /**
- * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- 'use strict';
- /**
- * Represents a single editor instance.
- *
- * @class Editor
- */
- CKEDITOR.define( [ 'ckeditor', 'mvc/model', 'utils' ], function( CKEDITOR, Model ) {
- var Editor = Model.extend( {
- /**
- * Creates a new instance of the Editor class.
- *
- * This constructor should be rarely used. When creating new editor instance use instead the
- * {@link CKEDITOR#create CKEDITOR.create() method}.
- *
- * @param {HTMLElement} element The DOM element that will be the source for the created editor.
- * @constructor
- */
- constructor: function Editor( element ) {
- /**
- * The original host page element upon which the editor is created. It is only supposed to be provided on
- * editor creation and is not subject to be modified.
- *
- * @readonly
- * @property {HTMLElement}
- */
- this.element = element;
- },
- /**
- * Destroys the editor instance, releasing all resources used by it. If the editor replaced an element, the
- * element will be recovered.
- *
- * @fires destroy
- */
- destroy: function() {
- this.fire( 'destroy' );
- delete this.element;
- }
- } );
- return Editor;
- } );
- /**
- * Fired when this editor instance is destroyed. The editor at this point is not usable and this event should be used to
- * perform the clean-up in any plugin.
- *
- * @event destroy
- */
|