NIFI-4324:

- Ensuring that sub context menus are removed when hiding to ensure they are correctly (re)created during mouseenter events.

Signed-off-by: Scott Aslan <scottyaslan@gmail.com>

This closes #2109
This commit is contained in:
Matt Gilman 2017-08-25 16:08:34 -04:00 committed by Scott Aslan
parent e3da44fb62
commit a4e729c7a7
1 changed files with 2 additions and 1 deletions

View File

@ -778,7 +778,8 @@
* Hides the context menu.
*/
hide: function () {
$('.context-menu').hide();
$('#context-menu').hide();
$('div.context-menu.sub-menu').remove();
},
/**