diff --git a/phpgwapi/js/egw_action/egw_action_popup.js b/phpgwapi/js/egw_action/egw_action_popup.js index b6ddad015b..bbcaba21b6 100644 --- a/phpgwapi/js/egw_action/egw_action_popup.js +++ b/phpgwapi/js/egw_action/egw_action_popup.js @@ -291,7 +291,9 @@ function egwPopupActionImplementation() } return !e.cancelBubble; }; - + // Safari still needs the taphold to trigger contextmenu + // Chrome has default event on touch and hold which acts like right click + $j(_node).bind('taphold', contextHandler); $j(_node).on('contextmenu', contextHandler); };