mirror of
https://github.com/nasa/openmct.git
synced 2025-05-22 10:13:58 +00:00
20 lines
595 B
JavaScript
20 lines
595 B
JavaScript
/*global define*/
|
|
|
|
define({
|
|
/**
|
|
* The string identifier for the data type used for drag-and-drop
|
|
* composition of domain objects. (e.g. in event.dataTransfer.setData
|
|
* calls.)
|
|
*/
|
|
MCT_DRAG_TYPE: 'mct-domain-object-id',
|
|
/**
|
|
* The string identifier for the data type used for drag-and-drop
|
|
* composition of domain objects, by object instance (passed through
|
|
* the dndService)
|
|
*/
|
|
MCT_EXTENDED_DRAG_TYPE: 'mct-domain-object',
|
|
/**
|
|
* String identifier for swimlanes being dragged.
|
|
*/
|
|
WARP_SWIMLANE_DRAG_TYPE: 'warp-swimlane'
|
|
}); |