Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Merge branch 'master' into t/ckeditor5/479
Browse files Browse the repository at this point in the history
  • Loading branch information
oleq committed Jan 25, 2019
2 parents 432b29b + 2b861b9 commit e574053
Showing 1 changed file with 3 additions and 13 deletions.
16 changes: 3 additions & 13 deletions src/decouplededitorui.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ export default class DecoupledEditorUI extends EditorUI {
/**
* The main (top–most) view of the editor UI.
*
* @private
* @member {module:ui/editorui/editoruiview~EditorUIView} #_view
* @readonly
* @member {module:ui/editorui/editoruiview~EditorUIView} #view
*/
this._view = view;
this.view = view;

/**
* A normalized `config.toolbar` object.
Expand All @@ -44,16 +44,6 @@ export default class DecoupledEditorUI extends EditorUI {
this._toolbarConfig = normalizeToolbarConfig( editor.config.get( 'toolbar' ) );
}

/**
* The main (top–most) view of the editor UI.
*
* @readonly
* @member {module:ui/editorui/editoruiview~EditorUIView} #view
*/
get view() {
return this._view;
}

/**
* Initializes the UI.
*/
Expand Down

0 comments on commit e574053

Please sign in to comment.