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

MoveOperation remove not needed dependency.

Szymon Cofalik 10 лет назад
Родитель
Сommit
5ee9b42d1c
1 измененных файлов с 1 добавлено и 2 удалено
  1. 1 2
      packages/ckeditor5-utils/src/document/operation/moveoperation.js

+ 1 - 2
packages/ckeditor5-utils/src/document/operation/moveoperation.js

@@ -7,11 +7,10 @@
 
 CKEDITOR.define( [
 	'document/operation/operation',
-	'document/nodelist',
 	'document/range',
 	'ckeditorerror',
 	'utils'
-], ( Operation, NodeList, Range, CKEditorError, utils ) => {
+], ( Operation, Range, CKEditorError, utils ) => {
 	/**
 	 * Operation to move list of subsequent nodes from one position in the document to another.
 	 *