Merge pull request #4052 from hamidovz/master

Bugfix: prevent tooltip to appear if the binded element is removed from DOM
This commit is contained in:
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

View file

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