mirror of
https://github.com/nasa/openmct.git
synced 2025-06-17 14:48:13 +00:00
[Browse] Fixed multiple clicks
Fixed having multiple calls to ContextMenuGesture. #33.
This commit is contained in:
@ -50,17 +50,15 @@ define(
|
||||
* @param {DomainObject} domainObject the object on which actions
|
||||
* in the context menu will be performed
|
||||
*/
|
||||
function ContextMenuAction($compile, $document, $window, $rootScope, element, domainObject, event) {
|
||||
function ContextMenuAction($compile, $document, $window, $rootScope, actionContext) {
|
||||
//var turnOffMenu;
|
||||
|
||||
/*
|
||||
console.log('in ContextMenuAction');
|
||||
console.log('contextMenuAction event ', event);
|
||||
*/
|
||||
|
||||
//function showMenu(event) {
|
||||
var winDim = [$window.innerWidth, $window.innerHeight],
|
||||
eventCoors = [event.pageX, event.pageY],
|
||||
eventCoors = [actionContext.event.pageX, actionContext.event.pageY],
|
||||
menuDim = GestureConstants.MCT_MENU_DIMENSIONS,
|
||||
body = $document.find('body'),
|
||||
scope = $rootScope.$new(),
|
||||
@ -96,12 +94,12 @@ define(
|
||||
"context-menu-holder": true
|
||||
};
|
||||
|
||||
//console.log("ContextMenuAction scope ", scope);
|
||||
console.log("ContextMenuAction scope ", scope);
|
||||
|
||||
// Create the context menu
|
||||
menu = $compile(MENU_TEMPLATE)(scope);
|
||||
|
||||
//console.log("ContextMenuAction menu ", menu);
|
||||
console.log("ContextMenuAction menu ", menu);
|
||||
|
||||
// Add the menu to the body
|
||||
body.append(menu);
|
||||
@ -110,7 +108,7 @@ define(
|
||||
body.on('click', dismiss);
|
||||
|
||||
// Don't launch browser's context menu
|
||||
event.preventDefault();
|
||||
actionContext.event.preventDefault();
|
||||
//}
|
||||
|
||||
return {
|
||||
|
@ -45,15 +45,13 @@ define(
|
||||
|
||||
// When context menu event occurs, show object actions instead
|
||||
element.on('contextmenu', function (event) {
|
||||
/*
|
||||
console.log('in ContextMenuGesture');
|
||||
console.log('event ', event);
|
||||
console.log('domainObject ', domainObject);
|
||||
console.log('domainObject action', domainObject.getCapability('action'));
|
||||
console.log('domainObject actions', domainObject.getCapability('action').getActions('contextMenu'));
|
||||
*/
|
||||
|
||||
actionContext = {key: 'contextMenu', domainObject: domainObject, event: event};
|
||||
actionContext = {key: 'menu', domainObject: domainObject, event: event};
|
||||
stop = domainObject.getCapability('action').perform(actionContext);
|
||||
});
|
||||
|
||||
@ -64,7 +62,7 @@ define(
|
||||
* @memberof ContextMenuGesture
|
||||
*/
|
||||
destroy: function () {
|
||||
//element.off('contextmenu', stop.destroy);
|
||||
element.off('contextmenu', stop);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user