Răsfoiți Sursa

Removed duplicated comment (the `ElementApi` interface describes `#sourceElement`).

Kamil Piechaczek 7 ani în urmă
părinte
comite
70b2472506
1 a modificat fișierele cu 0 adăugiri și 10 ștergeri
  1. 0 10
      packages/ckeditor5-editor-balloon/src/ballooneditor.js

+ 0 - 10
packages/ckeditor5-editor-balloon/src/ballooneditor.js

@@ -64,16 +64,6 @@ export default class BalloonEditor extends Editor {
 	constructor( sourceElementOrData, config ) {
 		super( config );
 
-		/**
-		 * The element on which the editor has been initialized.
-		 * If editor was initialized with data instead of HTMLElement this property will keep a reference to newly
-		 * created element that need to be added manually to the DOM. For more information see
-		 * {@link module:editor-balloon/ballooneditor~BalloonEditor.create `BalloonEditor.create()`}.
-		 *
-		 * @readonly
-		 * @member {HTMLElement} #element
-		 */
-
 		if ( isElement( sourceElementOrData ) ) {
 			this.sourceElement = sourceElementOrData;
 		}