2019-12-21 20:55:43 +05:30
|
|
|
import { Sortable } from 'sortablejs';
|
2017-08-17 22:00:37 +05:30
|
|
|
import simulateDrag from './simulate_drag';
|
2018-03-17 18:26:18 +05:30
|
|
|
import simulateInput from './simulate_input';
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
// Export to global space for rspec to use
|
|
|
|
window.simulateDrag = simulateDrag;
|
2018-03-17 18:26:18 +05:30
|
|
|
window.simulateInput = simulateInput;
|
2019-12-21 20:55:43 +05:30
|
|
|
window.Sortable = Sortable;
|