Bläddra i källkod

Renamed TreeDocument to ViewDocument.

Oskar Wrobel 9 år sedan
förälder
incheckning
d2aa48e3c2
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. 2 2
      packages/ckeditor5-engine/src/treecontroller/editingcontroller.js

+ 2 - 2
packages/ckeditor5-engine/src/treecontroller/editingcontroller.js

@@ -5,12 +5,12 @@
 
 'use strict';
 
-import TreeDocument from '../treeview/document.js';
+import ViewDocument from '../treeview/document.js';
 
 export default class EditingController {
 	constructor( modelDocument ) {
 		this.model = modelDocument;
-		this.view = new TreeDocument();
+		this.view = new ViewDocument();
 	}
 
 	destroy() {}