Explorar o código

Re-organize imports.

Maciej Gołaszewski %!s(int64=6) %!d(string=hai) anos
pai
achega
5e3928eb48
Modificáronse 1 ficheiros con 4 adicións e 4 borrados
  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 MouseEventsObserver from './tableselection/mouseeventsobserver';
-import TableWalker from './tablewalker';
-import { findAncestor } from './commands/utils';
 import mix from '@ckeditor/ckeditor5-utils/src/mix';
 import ObservableMixin from '@ckeditor/ckeditor5-utils/src/observablemixin';
+
+import TableWalker from './tablewalker';
 import TableUtils from './tableutils';
+import { findAncestor } from './commands/utils';
+import MouseEventsObserver from './tableselection/mouseeventsobserver';
 import { setupTableSelectionHighlighting } from './tableselection/converters';
 
 /**