Fix that a menu section is not expanded in a popup when hovered
fixes #8695
This commit is contained in:
parent
44b1255bbc
commit
d6e5afa6d5
|
@ -14,7 +14,7 @@
|
|||
this.on('click', '#menu tr[href]', this.linkClicked, this);
|
||||
this.on('mouseenter', 'li.dropdown', this.dropdownHover, this);
|
||||
this.on('mouseleave', 'li.dropdown', this.dropdownLeave, this);
|
||||
this.on('mouseenter', '#menu > ul > li', this.menuTitleHovered, this);
|
||||
this.on('mouseenter', '#menu > nav > ul > li', this.menuTitleHovered, this);
|
||||
this.on('mouseleave', '#sidebar', this.leaveSidebar, this);
|
||||
this.on('rendered', this.onRendered);
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue