Resolve #352
This commit is contained in:
parent
2a507fcac5
commit
c11d31e716
|
|
@ -289,6 +289,10 @@ li.ui-sortable-helper, li.ui-sortable-placeholder + li.queue_entry {
|
||||||
font-size: 14pt;
|
font-size: 14pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.userlist_item {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
.userlist_siteadmin {
|
.userlist_siteadmin {
|
||||||
color: #cc0000!important;
|
color: #cc0000!important;
|
||||||
font-weight: bold!important;
|
font-weight: bold!important;
|
||||||
|
|
|
||||||
|
|
@ -309,7 +309,7 @@ function addUserDropdown(entry) {
|
||||||
.appendTo(btngroup);
|
.appendTo(btngroup);
|
||||||
}
|
}
|
||||||
|
|
||||||
entry.contextmenu(function(ev) {
|
var showdd = function(ev) {
|
||||||
ev.preventDefault();
|
ev.preventDefault();
|
||||||
if(menu.css("display") == "none") {
|
if(menu.css("display") == "none") {
|
||||||
$(".user-dropdown").hide();
|
$(".user-dropdown").hide();
|
||||||
|
|
@ -326,7 +326,9 @@ function addUserDropdown(entry) {
|
||||||
menu.hide();
|
menu.hide();
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
});
|
};
|
||||||
|
entry.contextmenu(showdd);
|
||||||
|
entry.click(showdd);
|
||||||
}
|
}
|
||||||
|
|
||||||
function calcUserBreakdown() {
|
function calcUserBreakdown() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue