diff --git a/dashboard-ui/scripts/librarylist.js b/dashboard-ui/scripts/librarylist.js index f73ec1142c..dcf354296e 100644 --- a/dashboard-ui/scripts/librarylist.js +++ b/dashboard-ui/scripts/librarylist.js @@ -937,6 +937,7 @@ showSelections(card); + // It won't have this if it's a hammer event if (e.stopPropagation) { e.stopPropagation(); } @@ -944,7 +945,10 @@ return false; } e.preventDefault(); - e.stopPropagation(); + // It won't have this if it's a hammer event + if (e.stopPropagation) { + e.stopPropagation(); + } return false; }