Explorar o código

Code style - css import should be the last import.

Maciej Gołaszewski %!s(int64=5) %!d(string=hai) anos
pai
achega
c9f19c06fd
Modificáronse 1 ficheiros con 3 adicións e 2 borrados
  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.