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

Aligned code with engine changes.

Oskar Wróbel 8 лет назад
Родитель
Сommit
7cd278677a
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      packages/ckeditor5-editor-inline/src/inlineeditor.js

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

@@ -52,7 +52,7 @@ export default class InlineEditor extends StandardEditor {
 	constructor( element, config ) {
 		super( element, config );
 
-		this.document.createRoot();
+		this.model.document.createRoot();
 		this.data.processor = new HtmlDataProcessor();
 		this.ui = new InlineEditorUI( this, new InlineEditorUIView( this.locale, element ) );
 	}