hide tooltip after removing subflow tab

This commit is contained in:
Hiroyasu Nishiyama 2022-02-02 11:34:58 +09:00
parent b7bae18849
commit 7959d18248
1 changed files with 9 additions and 0 deletions

View File

@ -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);