prevent tooltip to appear if the binded element is removed from DOM

This commit is contained in:
Beta Bilim 2023-06-14 03:55:48 +04:00
parent 71d8d1cd48
commit 734b41e5bd

View file

@ -88,7 +88,7 @@ function onKeydown(event) {
}
function tooltipActions(el) {
if (el.$_ptooltipDisabled) {
if (el.$_ptooltipDisabled || !DomHandler.isExist(el) ) {
return;
}