From 63b41d796a2881bda72398cc78f693ab51ba30d6 Mon Sep 17 00:00:00 2001 From: Shivam Dave Date: Thu, 27 Aug 2015 12:06:25 -0700 Subject: [PATCH] [Mobile] Clean Up Cleaned up context menu gesture comments with spacing. --- platform/representation/src/gestures/ContextMenuGesture.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/platform/representation/src/gestures/ContextMenuGesture.js b/platform/representation/src/gestures/ContextMenuGesture.js index 158c209beb..4de40586dd 100644 --- a/platform/representation/src/gestures/ContextMenuGesture.js +++ b/platform/representation/src/gestures/ContextMenuGesture.js @@ -55,14 +55,17 @@ define( // When context menu event occurs, show object actions instead if (!agentService.isMobile(navigator.userAgent)) { + // When context menu event occurs, show object actions instead element.on('contextmenu', showMenu); } else if (agentService.isMobile(navigator.userAgent)) { + // If on mobile device, then start timeout for the single touch event // during the timeout 'isPressing' is true. element.on('touchstart', function (event) { if (event.touches.length < 2) { isPressing = true; + // After the timeout, if 'isPressing' is // true, display context menu for object $timeout(function () { @@ -72,6 +75,7 @@ define( }, longTouchTime); } }); + // Whenever the touch event ends, 'isPressing' is false. element.on('touchend', function (event) { isPressing = false;