From a582375e6127dd12c66d3aa578e7e371380a44b4 Mon Sep 17 00:00:00 2001 From: Sarah Hale Date: Thu, 2 Jul 2015 12:38:32 -0700 Subject: [PATCH] [Browse] Style All modified code follows style guides. #33. --- platform/representation/src/gestures/ContextMenuGesture.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/platform/representation/src/gestures/ContextMenuGesture.js b/platform/representation/src/gestures/ContextMenuGesture.js index c9ffc2c41f..cfab655442 100644 --- a/platform/representation/src/gestures/ContextMenuGesture.js +++ b/platform/representation/src/gestures/ContextMenuGesture.js @@ -45,12 +45,6 @@ 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('menu')); - actionContext = {key: 'menu', domainObject: domainObject, event: event}; stop = domainObject.getCapability('action').perform(actionContext); });