Resolve #352
This commit is contained in:
parent
2a507fcac5
commit
c11d31e716
2 changed files with 8 additions and 2 deletions
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue