mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
prevent tooltip to appear if the binded element is removed from DOM
This commit is contained in:
parent
71d8d1cd48
commit
734b41e5bd
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ function onKeydown(event) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function tooltipActions(el) {
|
function tooltipActions(el) {
|
||||||
if (el.$_ptooltipDisabled) {
|
if (el.$_ptooltipDisabled || !DomHandler.isExist(el) ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue