8
0
Эх сурвалжийг харах

Changed the order of *EditorUI constructor parameters.

Aleksander Nowodzinski 9 жил өмнө
parent
commit
077766f56c

+ 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 );