prevent tooltip to appear if the binded element is removed from DOM
parent
71d8d1cd48
commit
734b41e5bd
|
@ -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…
Reference in New Issue