Skip to content

Commit

Permalink
FIX: Fixed checkHideMenu is not defined issue when header menu is dis…
Browse files Browse the repository at this point in the history
…abled (fixes #111)
  • Loading branch information
LarsMichelsen committed May 17, 2017
1 parent 6e74d26 commit 53c2ea3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
1.9b19
Frontend:
* FIX: Fixed problems while editing roles of users
* FIX: Fixed checkHideMenu is not defined issue when header menu is disabled

1.9b18
Core:
Expand Down
3 changes: 2 additions & 1 deletion share/frontend/nagvis-js/js/ViewWorldmap.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ var ViewWorldmap = ViewMap.extend({
g_map.on('moveend', this.handleMoveEnd.bind(this));

// hide eventual open header dropdown menus when clicking on the map
g_map.on('mousedown', checkHideMenu);
if (checkHideMenu)
g_map.on('mousedown', checkHideMenu);
g_map.on('mousedown', context_handle_global_mousedown);
},

Expand Down

0 comments on commit 53c2ea3

Please sign in to comment.