webgme
Version:
Web-based Generic Modeling Environment
18 lines (15 loc) • 359 B
JavaScript
/*globals define */
/*jshint browser: true*/
/**
* @author rkereskenyi / https://github.com/rkereskenyi
*/
define([], function () {
'use strict';
//define client-only string constants
return {
DRAG_ITEMS: 'DRAG_ITEMS',
DRAG_EFFECTS: 'DRAG_EFFECTS',
DRAG_INFO: 'DRAG_INFO',
DRAG_PARAMS: 'DRAG_PARAMS'
};
});