Don't display the menu when the anchor is disabled
This commit is contained in:
parent
918dd5679f
commit
46af060a37
1 changed files with 7 additions and 5 deletions
|
@ -14,6 +14,7 @@ function openMenu(anchor, menu) {
|
||||||
* Callback called when the mouse enters a menu anchor.
|
* Callback called when the mouse enters a menu anchor.
|
||||||
*/
|
*/
|
||||||
function enterMenuAnchor(event, anchor, menu, delay) {
|
function enterMenuAnchor(event, anchor, menu, delay) {
|
||||||
|
if (!anchor.hasClassName("disabled")) {
|
||||||
clearTimeout(menu.timer);
|
clearTimeout(menu.timer);
|
||||||
|
|
||||||
if (delay > 0) {
|
if (delay > 0) {
|
||||||
|
@ -22,6 +23,7 @@ function enterMenuAnchor(event, anchor, menu, delay) {
|
||||||
openMenu(event, menu);
|
openMenu(event, menu);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Callback called when the mouse leaves a menu anchor.
|
* Callback called when the mouse leaves a menu anchor.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue