Skip to content

Commit

Permalink
JS: Fix navigation flyout not fading out after mouseout
Browse files Browse the repository at this point in the history
refs #3904
  • Loading branch information
flourish86 authored and lippserd committed Dec 5, 2019
1 parent 36e11c5 commit 3f56fa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/js/icinga/behavior/navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);

/**
Expand Down

0 comments on commit 3f56fa5

Please sign in to comment.