diff --git a/dashboard-ui/scripts/actionsheet.js b/dashboard-ui/scripts/actionsheet.js index 3588e050ce..c2a9aa960b 100644 --- a/dashboard-ui/scripts/actionsheet.js +++ b/dashboard-ui/scripts/actionsheet.js @@ -144,7 +144,7 @@ }); // Seeing an issue in some non-chrome browsers where this is requiring a double click - var eventName = browserInfo.chrome || browserInfo.safari ? 'click' : 'mousedown'; + var eventName = browserInfo.chrome ? 'click' : 'mousedown'; $('.actionSheetMenuItem', dlg).on(eventName, function () {