JS: Fix navigation flyout not fading out after mouseout

refs #3904
This commit is contained in:
Florian Strohmaier 2019-08-07 13:14:27 +02:00 committed by Johannes Meyer
parent 88db9c80c3
commit 7864150054
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@
this.on('click', '#menu tr[href]', this.linkClicked, this);
this.on('rendered', '#menu', this.onRendered, this);
this.on('mouseenter', '#menu .nav-level-1 > .nav-item', this.showFlyoutMenu, this);
this.on('mouseleave', '#menu-container', this.hideFlyoutMenu, this);
this.on('mouseleave', '#menu', this.hideFlyoutMenu, this);
this.on('click', '#toggle-sidebar', this.toggleSidebar, this);
/**