format fix
parent
349e084249
commit
5b309206b9
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue