瀏覽代碼

Internal: Aligned engine's dev utils use to changes in the engine. Closes #131.

Piotrek Koszuliński 8 年之前
父節點
當前提交
7c24323d26

+ 1 - 1
packages/ckeditor5-typing/tests/manual/52/1.js

@@ -14,7 +14,7 @@ import Essentials from '@ckeditor/ckeditor5-essentials/src/essentials';
 import { getData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
 
 window.setInterval( function() {
-	console.log( getData( window.editor.model.document ) );
+	console.log( getData( window.editor.model ) );
 }, 3000 );
 
 ClassicEditor

+ 1 - 1
packages/ckeditor5-typing/tests/manual/82/1.js

@@ -12,7 +12,7 @@ import Essentials from '@ckeditor/ckeditor5-essentials/src/essentials';
 import { getData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
 
 window.setInterval( function() {
-	console.log( getData( window.editor.model.document ) );
+	console.log( getData( window.editor.model ) );
 }, 3000 );
 
 ClassicEditor

+ 1 - 1
packages/ckeditor5-typing/tests/manual/86/1.js

@@ -11,7 +11,7 @@ import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
 import { getData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
 
 window.setInterval( function() {
-	console.log( getData( window.editor.model.document ) );
+	console.log( getData( window.editor.model ) );
 }, 3000 );
 
 ClassicEditor

+ 1 - 1
packages/ckeditor5-typing/tests/manual/delete.js

@@ -16,7 +16,7 @@ import { getData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
 window.getData = getData;
 
 window.setInterval( function() {
-	console.log( getData( window.editor.model.document ) );
+	console.log( getData( window.editor.model ) );
 }, 3000 );
 
 ClassicEditor

+ 1 - 1
packages/ckeditor5-typing/tests/manual/input.js

@@ -14,7 +14,7 @@ import Essentials from '@ckeditor/ckeditor5-essentials/src/essentials';
 import { getData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
 
 window.setInterval( function() {
-	console.log( getData( window.editor.model.document ) );
+	console.log( getData( window.editor.model ) );
 }, 3000 );
 
 ClassicEditor

+ 1 - 1
packages/ckeditor5-typing/tests/manual/spellchecking.js

@@ -14,7 +14,7 @@ import Essentials from '@ckeditor/ckeditor5-essentials/src/essentials';
 import { getData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
 
 window.setInterval( function() {
-	console.log( getData( window.editor.model.document ) );
+	console.log( getData( window.editor.model ) );
 }, 3000 );
 
 ClassicEditor.create( document.querySelector( '#editor' ), {