From 855b7c22af72e81b2ee57721abb89987c97e2490 Mon Sep 17 00:00:00 2001 From: Philipp Schaefer Date: Fri, 14 Jun 2013 11:21:44 +0200 Subject: [PATCH] fixed portal long tab issue --- code/smartphone.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/code/smartphone.js b/code/smartphone.js index 59acb7af..3c38940f 100644 --- a/code/smartphone.js +++ b/code/smartphone.js @@ -92,10 +92,9 @@ window.runOnSmartphonesAfterBoot = function() { $(this._container).on('taphold', function() { if (typeof android !== 'undefined' && android && android.portalLongPressed) { android.portalLongPressed(); - } else { - window.renderPortalDetails(guid); - window.smartphone.sideButton.click(); } + window.renderPortalDetails(guid); + window.smartphone.sideButton.click(); }); }); });