[Selection] Add adapter for context menu

This commit is contained in:
Victor Woeltjen 2016-09-22 11:46:37 -07:00
parent c46c42e576
commit 152f55652f

View File

@ -0,0 +1,9 @@
define(
function () {
function AdaptedContextMenuGesture(openmct, element, domainObject) {
this.destroy = openmct.gestures.contextMenu(element, domainObject);
}
return AdaptedContextMenuGesture;
}
);