ember-sortable
Version:
Sortable UI primitives for Ember.
13 lines (11 loc) • 386 B
JavaScript
const DRAG_ACTIONS = ['mousemove', 'touchmove'];
const ELEMENT_CLICK_ACTION = 'click';
const END_ACTIONS = ['click', 'mouseup', 'touchend'];
const ANNOUNCEMENT_ACTION_TYPES = {
ACTIVATE: 'ACTIVATE',
MOVE: 'MOVE',
CONFIRM: 'CONFIRM',
CANCEL: 'CANCEL'
};
export { ANNOUNCEMENT_ACTION_TYPES, DRAG_ACTIONS, ELEMENT_CLICK_ACTION, END_ACTIONS };
//# sourceMappingURL=constant.js.map