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

pull/4052/head
Beta Bilim 2023-06-14 03:55:48 +04:00
parent 71d8d1cd48
commit 734b41e5bd
1 changed files with 1 additions and 1 deletions

View File

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