Bläddra i källkod

Refactor the line where passing shouldToolbarGroupWhenFull option to the InlineEditorUIView instance

panr 6 år sedan
förälder
incheckning
e466035331
1 ändrade filer med 3 tillägg och 1 borttagningar
  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 );