From 2a8b94e26a3babf1085742acd3320618d6f874e0 Mon Sep 17 00:00:00 2001 From: calzoneman Date: Wed, 27 Aug 2014 18:49:00 -0500 Subject: [PATCH] Chrome shiftclick workaround requested by Xaekai --- www/js/util.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/www/js/util.js b/www/js/util.js index be08bddd..e9b3ea87 100644 --- a/www/js/util.js +++ b/www/js/util.js @@ -307,6 +307,8 @@ function addUserDropdown(entry) { } var showdd = function(ev) { + // Workaround for Chrome + if (ev.shiftKey) return true; ev.preventDefault(); if(menu.css("display") == "none") { $(".user-dropdown").hide();