Merge pull request #4052 from hamidovz/master

Bugfix: prevent tooltip to appear if the binded element is removed from DOM
pull/3999/head
Tuğçe Küçükoğlu 2023-06-20 10:41:46 +03:00 committed by GitHub
commit 349e084249
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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