Merge pull request #4052 from hamidovz/master
Bugfix: prevent tooltip to appear if the binded element is removed from DOMpull/3999/head
commit
349e084249
|
@ -91,7 +91,7 @@ function onKeydown(event) {
|
|||
}
|
||||
|
||||
function tooltipActions(el) {
|
||||
if (el.$_ptooltipDisabled) {
|
||||
if (el.$_ptooltipDisabled || !DomHandler.isExist(el) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue