8
0
Maciej Gołaszewski 6 лет назад
Родитель
Сommit
5e3928eb48
1 измененных файлов с 4 добавлено и 4 удалено
  1. 4 4
      packages/ckeditor5-table/src/tableselection.js

+ 4 - 4
packages/ckeditor5-table/src/tableselection.js

@@ -8,13 +8,13 @@
  */
  */
 
 
 import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
 import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
-
-import MouseEventsObserver from './tableselection/mouseeventsobserver';
-import TableWalker from './tablewalker';
-import { findAncestor } from './commands/utils';
 import mix from '@ckeditor/ckeditor5-utils/src/mix';
 import mix from '@ckeditor/ckeditor5-utils/src/mix';
 import ObservableMixin from '@ckeditor/ckeditor5-utils/src/observablemixin';
 import ObservableMixin from '@ckeditor/ckeditor5-utils/src/observablemixin';
+
+import TableWalker from './tablewalker';
 import TableUtils from './tableutils';
 import TableUtils from './tableutils';
+import { findAncestor } from './commands/utils';
+import MouseEventsObserver from './tableselection/mouseeventsobserver';
 import { setupTableSelectionHighlighting } from './tableselection/converters';
 import { setupTableSelectionHighlighting } from './tableselection/converters';
 
 
 /**
 /**