Преглед на файлове

Renamed TreeDocument to ViewDocument.

Oskar Wrobel преди 9 години
родител
ревизия
d2aa48e3c2
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  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() {}