|
|
@@ -8,14 +8,18 @@
|
|
|
import View from '../ui/view.js';
|
|
|
import CKEditorError from '../ckeditorerror.js';
|
|
|
|
|
|
+/**
|
|
|
+ * @class core.editable.EditableView
|
|
|
+ * @extends core.ui.View
|
|
|
+ */
|
|
|
export default class EditableView extends View {
|
|
|
/**
|
|
|
* The element which is the main editable element (usually the one with `contentEditable="true"`).
|
|
|
*
|
|
|
+ * @member core.editable.EditableView#editableElement
|
|
|
* @readonly
|
|
|
* @type {HTMLElement}
|
|
|
*/
|
|
|
-
|
|
|
setEditableElement( editableElement ) {
|
|
|
const bind = this.attributeBinder;
|
|
|
|