8
0
Просмотр исходного кода

Refactor the line where passing shouldToolbarGroupWhenFull option to the InlineEditorUIView instance

panr 6 лет назад
Родитель
Сommit
e466035331
1 измененных файлов с 3 добавлено и 1 удалено
  1. 3 1
      packages/ckeditor5-editor-inline/src/inlineeditor.js

+ 3 - 1
packages/ckeditor5-editor-inline/src/inlineeditor.js

@@ -75,7 +75,9 @@ export default class InlineEditor extends Editor {
 
 		const shouldToolbarGroupWhenFull = !this.config.get( 'toolbar.shouldNotGroupWhenFull' );
 
-		const view = new InlineEditorUIView( this.locale, this.editing.view, this.sourceElement, { shouldToolbarGroupWhenFull } );
+		const view = new InlineEditorUIView( this.locale, this.editing.view, this.sourceElement, {
+			shouldToolbarGroupWhenFull
+		} );
 		this.ui = new InlineEditorUI( this, view );
 
 		attachToForm( this );