Procházet zdrojové kódy

Merge pull request #223 from ckeditor/t/ckeditor5-ui/26

T/ckeditor5 ui/26: Review our approach to MVVM
Piotrek Koszuliński před 9 roky
rodič
revize
fd01cbe3e5
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      tests/_utils/classictesteditor.js

+ 1 - 1
tests/_utils/classictesteditor.js

@@ -32,7 +32,7 @@ export default class ClassicTestEditor extends StandardEditor {
 		this.data.processor = new HtmlDataProcessor();
 
 		this.ui = new BoxedEditorUI( this );
-		this.ui.view = new BoxedEditorUIView( this.ui.viewModel, this.locale );
+		this.ui.view = new BoxedEditorUIView( this.locale );
 	}
 
 	/**