[JSDoc] Remove obsolete module references

WTD-1482
This commit is contained in:
Victor Woeltjen
2015-08-07 11:55:38 -07:00
parent c08a460d30
commit eaaa1a19ca
9 changed files with 18 additions and 45 deletions

View File

@ -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'
});