From 1d7a0fa48d3ea476657e454a60c11a4539d3ce4d Mon Sep 17 00:00:00 2001 From: Shivam Dave Date: Mon, 27 Jul 2015 11:30:29 -0700 Subject: [PATCH] [Mobile] Removed InfoGesture Commented out infogesture. --- platform/commonUI/inspect/src/gestures/InfoGesture.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/platform/commonUI/inspect/src/gestures/InfoGesture.js b/platform/commonUI/inspect/src/gestures/InfoGesture.js index 67107773f5..4cac0ff98a 100644 --- a/platform/commonUI/inspect/src/gestures/InfoGesture.js +++ b/platform/commonUI/inspect/src/gestures/InfoGesture.js @@ -125,9 +125,10 @@ define( if (!queryService.isMobile(navigator.userAgent)) { // Show bubble (on a timeout) on mouse over element.on('mouseenter', showBubble); - } else if (queryService.isMobile(navigator.userAgent)) { - element.on('touchstart', showTouchBubble); } +// else if (queryService.isMobile(navigator.userAgent)) { +// element.on('touchstart', showTouchBubble); +// } // Also make sure we dismiss bubble if representation is destroyed // before the mouse actually leaves it