From cb5e07674d40265db43a172029a7dc27ae5cad54 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Tue, 20 Oct 2015 12:53:51 -0400 Subject: [PATCH] update IsHD --- dashboard-ui/scripts/actionsheet.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard-ui/scripts/actionsheet.js b/dashboard-ui/scripts/actionsheet.js index 576fd0c64d..681ef5bdc2 100644 --- a/dashboard-ui/scripts/actionsheet.js +++ b/dashboard-ui/scripts/actionsheet.js @@ -108,7 +108,7 @@ }); // Seeing an issue in some non-chrome browsers where this is requiring a double click - var eventName = $.browser.chrome ? 'click' : 'mousedown'; + var eventName = $.browser.chrome || $.browser.safari ? 'click' : 'mousedown'; $('.actionSheetMenuItem', dlg).on(eventName, function () {