Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Internal: Aligned engine's dev utils use to changes in the engine. Cl…
Browse files Browse the repository at this point in the history
…oses #131.
  • Loading branch information
Reinmar committed Jan 3, 2018
1 parent 02b6de7 commit a49102e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tests/manual/52/1.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/manual/82/1.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/manual/86/1.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/manual/delete.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/manual/input.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/manual/spellchecking.js
Original file line number Diff line number Diff line change
Expand Up @@ -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' ), {
Expand Down

0 comments on commit a49102e

Please sign in to comment.