Explorar el Código

Changed the order of *EditorUI constructor parameters.

Aleksander Nowodzinski hace 9 años
padre
commit
077766f56c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      packages/ckeditor5-editor-classic/src/classiceditorui.js

+ 1 - 1
packages/ckeditor5-editor-classic/src/classiceditorui.js

@@ -98,7 +98,7 @@ export default class ClassicEditorUI extends BoxedEditorUI {
 		const editor = this.editor;
 
 		const editable = editor.editing.view.getRoot();
-		const editableUI = new EditableUI( editor, editable, new InlineEditableUIView( editor.locale ) );
+		const editableUI = new EditableUI( editable, new InlineEditableUIView( editor.locale ), editor );
 
 		this.add( 'main', editableUI );