mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
hide tooltip after removing subflow tab
This commit is contained in:
parent
b7bae18849
commit
7959d18248
@ -350,6 +350,15 @@ RED.popover = (function() {
|
||||
}
|
||||
}
|
||||
|
||||
target.on("remove", function (ev) {
|
||||
if (timer) {
|
||||
clearTimeout(timer);
|
||||
}
|
||||
if (active) {
|
||||
active = false;
|
||||
setTimeout(closePopup,delay.hide);
|
||||
}
|
||||
});
|
||||
if (trigger === 'hover') {
|
||||
target.on('mouseenter',function(e) {
|
||||
clearTimeout(timer);
|
||||
|
Loading…
Reference in New Issue
Block a user