From 586656289de6b56446ad0dbfff9eaf5a03822b6f Mon Sep 17 00:00:00 2001 From: Hadi Nategh Date: Thu, 27 Nov 2014 16:57:57 +0000 Subject: [PATCH] Fix taphold context menu popup --- phpgwapi/js/egw_action/egw_action_popup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/js/egw_action/egw_action_popup.js b/phpgwapi/js/egw_action/egw_action_popup.js index 95574baa1d..918ec55095 100644 --- a/phpgwapi/js/egw_action/egw_action_popup.js +++ b/phpgwapi/js/egw_action/egw_action_popup.js @@ -256,7 +256,7 @@ function egwPopupActionImplementation() { _egw_active_menu.hide(); } - else if (!e.ctrlKey && e.which == 3) + else if (!e.ctrlKey && e.which == 3 || e.which === 0) // tap event indicates by 0 { var _xy = ai._getPageXY(e); _callback.call(_context, _xy, ai);