|
|
@@ -9,7 +9,6 @@
|
|
|
|
|
|
import EditorUIView from '@ckeditor/ckeditor5-ui/src/editorui/editoruiview';
|
|
|
import InlineEditableUIView from '@ckeditor/ckeditor5-ui/src/editableui/inline/inlineeditableuiview';
|
|
|
-import log from '@ckeditor/ckeditor5-utils/src/log';
|
|
|
|
|
|
/**
|
|
|
* Contextual editor UI view. Uses the {@link module:ui/editableui/inline/inlineeditableuiview~InlineEditableUIView}.
|
|
|
@@ -44,20 +43,4 @@ export default class BalloonEditorUIView extends EditorUIView {
|
|
|
|
|
|
this.registerChild( this.editable );
|
|
|
}
|
|
|
-
|
|
|
- /**
|
|
|
- * **Deprecated** since `v12.0.0`. The {@link module:ui/editableui/editableuiview~EditableUIView#editableElement
|
|
|
- * `EditableUIView editableElement`} could be used instead.
|
|
|
- *
|
|
|
- * The element which is the main editable element (usually the one with `contentEditable="true"`).
|
|
|
- *
|
|
|
- * @deprecated v12.0.0 The {@link module:ui/editableui/editableuiview~EditableUIView#editableElement
|
|
|
- * `EditableUIView editableElement`} could be used instead.
|
|
|
- * @readonly
|
|
|
- * @member {HTMLElement} #editableElement
|
|
|
- */
|
|
|
- get editableElement() {
|
|
|
- log.warn( 'deprecated-ui-view-editableElement: The BalloonEditorUIView#editableElement property is deprecated.' );
|
|
|
- return this.editable.editableElement;
|
|
|
- }
|
|
|
}
|