Browse Source

Used ListDropdownView instead of DropdownView in ClassicCreator MT.

Aleksander Nowodzinski 9 years ago
parent
commit
ea4143b2c6
1 changed files with 2 additions and 2 deletions
  1. 2 2
      packages/ckeditor5-editor-classic/src/utils/imitatefeatures.js

+ 2 - 2
packages/ckeditor5-editor-classic/src/utils/imitatefeatures.js

@@ -12,7 +12,7 @@ import ButtonView from '/ckeditor5/ui/button/buttonview.js';
 import Collection from '/ckeditor5/utils/collection.js';
 
 import ListDropdown from '/ckeditor5/ui/dropdown/list/listdropdown.js';
-import DropdownView from '/ckeditor5/ui/dropdown/dropdownview.js';
+import ListDropdownView from '/ckeditor5/ui/dropdown/list/listdropdownview.js';
 
 /**
  * Immitates that some features were loaded and did their job.
@@ -94,7 +94,7 @@ export function imitateFeatures( editor ) {
 		content: fontListModel
 	} );
 
-	editor.ui.featureComponents.add( 'font', ListDropdown, DropdownView, fontModel );
+	editor.ui.featureComponents.add( 'font', ListDropdown, ListDropdownView, fontModel );
 
 	window.fontCollection = fontCollection;
 	window.Model = Model;