format fix

pull/3999/head
Tuğçe Küçükoğlu 2023-06-20 10:45:15 +03:00
parent 349e084249
commit 5b309206b9
1 changed files with 2 additions and 2 deletions

View File

@ -86,12 +86,12 @@ function onClick(event) {
function onKeydown(event) { function onKeydown(event) {
const el = event.currentTarget; const el = event.currentTarget;
const hideDelay = el.$_ptooltipHideDelay; const hideDelay = el.$_ptooltipHideDelay;
event.code === 'Escape' && hide(event.currentTarget, hideDelay); event.code === 'Escape' && hide(event.currentTarget, hideDelay);
} }
function tooltipActions(el) { function tooltipActions(el) {
if (el.$_ptooltipDisabled || !DomHandler.isExist(el) ) { if (el.$_ptooltipDisabled || !DomHandler.isExist(el)) {
return; return;
} }