mirror of
https://github.com/nasa/openmct.git
synced 2024-12-22 14:32:22 +00:00
dcb4f2a4d4
Add empty specs for all scripts introduced for the representation component. WTD-521.
21 lines
409 B
JavaScript
21 lines
409 B
JavaScript
/*global define,Promise*/
|
|
|
|
/**
|
|
* Module defining ContextMenuGestureSpec. Created by vwoeltje on 11/22/14.
|
|
*/
|
|
define(
|
|
["../../src/gestures/ContextMenuGesture"],
|
|
function (ContextMenuGesture) {
|
|
"use strict";
|
|
|
|
/**
|
|
*
|
|
* @constructor
|
|
*/
|
|
function ContextMenuGestureSpec() {
|
|
return {};
|
|
}
|
|
|
|
return ContextMenuGestureSpec;
|
|
}
|
|
); |