diff --git a/www/css/cytube.css b/www/css/cytube.css index 86a1194a..256b8688 100644 --- a/www/css/cytube.css +++ b/www/css/cytube.css @@ -289,6 +289,10 @@ li.ui-sortable-helper, li.ui-sortable-placeholder + li.queue_entry { font-size: 14pt; } +.userlist_item { + cursor: pointer; +} + .userlist_siteadmin { color: #cc0000!important; font-weight: bold!important; diff --git a/www/js/util.js b/www/js/util.js index ec8f4521..6c4f91bb 100644 --- a/www/js/util.js +++ b/www/js/util.js @@ -309,7 +309,7 @@ function addUserDropdown(entry) { .appendTo(btngroup); } - entry.contextmenu(function(ev) { + var showdd = function(ev) { ev.preventDefault(); if(menu.css("display") == "none") { $(".user-dropdown").hide(); @@ -326,7 +326,9 @@ function addUserDropdown(entry) { menu.hide(); } return false; - }); + }; + entry.contextmenu(showdd); + entry.click(showdd); } function calcUserBreakdown() {