Hide tooltips when context menu opens

This commit is contained in:
nathan
2023-09-13 14:05:50 -06:00
parent 2d81a67c9b
commit bf7106cf86
2 changed files with 13 additions and 1 deletions

View File

@ -251,6 +251,15 @@ egw.extend('tooltip', egw.MODULE_WND_LOCAL, function(_app, _wnd)
tooltip_div.fadeOut(100);
tooltip_div.remove();
}
},
/**
* Hide tooltip, cancel the timer
*/
tooltipCancel: function ()
{
hide();
current_elem = null;
}
};