index.js 278 B

123456789101112131415
  1. import SelectionModule from '../selection';
  2. import Dragging from './Dragging';
  3. import HoverFix from './HoverFix';
  4. export default {
  5. __init__: [
  6. 'hoverFix'
  7. ],
  8. __depends__: [
  9. SelectionModule
  10. ],
  11. dragging: [ 'type', Dragging ],
  12. hoverFix: [ 'type', HoverFix ]
  13. };