Jelajahi Sumber

Code style - css import should be the last import.

Maciej Gołaszewski 5 tahun lalu
induk
melakukan
c9f19c06fd
1 mengubah file dengan 3 tambahan dan 2 penghapusan
  1. 3 2
      packages/ckeditor5-table/src/tableselection.js

+ 3 - 2
packages/ckeditor5-table/src/tableselection.js

@@ -14,10 +14,11 @@ import TableWalker from './tablewalker';
 import TableUtils from './tableutils';
 import MouseEventsObserver from './tableselection/mouseeventsobserver';
 
-import '../theme/tableselection.css';
-import { getColumnIndexes, getRowIndexes, getSelectedTableCells, getTableCellsContainingSelection } from './utils/selection';
 import { findAncestor } from './utils/common';
 import { cropTableToDimensions } from './utils/structure';
+import { getColumnIndexes, getRowIndexes, getSelectedTableCells, getTableCellsContainingSelection } from './utils/selection';
+
+import '../theme/tableselection.css';
 
 /**
  * This plugin enables the advanced table cells, rows and columns selection.