mirror of
https://github.com/nasa/openmct.git
synced 2025-06-12 20:28:14 +00:00
[JSDoc] Remove obsolete module references
WTD-1482
This commit is contained in:
@ -22,7 +22,8 @@
|
||||
/*global define,Promise*/
|
||||
|
||||
/**
|
||||
* Module defining GestureConstants. Created by vwoeltje on 11/17/14.
|
||||
* Constants used by domain object gestures.
|
||||
* @class platform/representation.GestureConstants
|
||||
*/
|
||||
define({
|
||||
/**
|
||||
@ -30,22 +31,25 @@ define({
|
||||
* composition of domain objects. (e.g. in event.dataTransfer.setData
|
||||
* calls.)
|
||||
* @constructor
|
||||
* @memberof platform/representation
|
||||
* @memberof platform/representation.GestureConstants
|
||||
*/
|
||||
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)
|
||||
* @memberof platform/representation.GestureConstants
|
||||
*/
|
||||
MCT_EXTENDED_DRAG_TYPE: 'mct-domain-object',
|
||||
/**
|
||||
* An estimate for the dimensions of a context menu, used for
|
||||
* positioning.
|
||||
* @memberof platform/representation.GestureConstants
|
||||
*/
|
||||
MCT_MENU_DIMENSIONS: [ 170, 200 ],
|
||||
/**
|
||||
* Identifier for drop events.
|
||||
* @memberof platform/representation.GestureConstants
|
||||
*/
|
||||
MCT_DROP_EVENT: 'mctDrop'
|
||||
});
|
||||
|
Reference in New Issue
Block a user