mirror of https://github.com/apache/nifi.git
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:
parent
e3da44fb62
commit
a4e729c7a7
|
@ -778,7 +778,8 @@
|
||||||
* Hides the context menu.
|
* Hides the context menu.
|
||||||
*/
|
*/
|
||||||
hide: function () {
|
hide: function () {
|
||||||
$('.context-menu').hide();
|
$('#context-menu').hide();
|
||||||
|
$('div.context-menu.sub-menu').remove();
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue