From 7864150054052c440afec26218e56c1463920c34 Mon Sep 17 00:00:00 2001 From: Florian Strohmaier Date: Wed, 7 Aug 2019 13:14:27 +0200 Subject: [PATCH] JS: Fix navigation flyout not fading out after mouseout refs #3904 --- public/js/icinga/behavior/navigation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/icinga/behavior/navigation.js b/public/js/icinga/behavior/navigation.js index 07a90ef4d..0e1d2504a 100644 --- a/public/js/icinga/behavior/navigation.js +++ b/public/js/icinga/behavior/navigation.js @@ -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); /**