From 5b309206b9722ef880bfb6fb3fb52a6ba17682cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Tue, 20 Jun 2023 10:45:15 +0300 Subject: [PATCH] format fix --- components/lib/tooltip/Tooltip.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/lib/tooltip/Tooltip.js b/components/lib/tooltip/Tooltip.js index 93027ccec..efa8b6288 100755 --- a/components/lib/tooltip/Tooltip.js +++ b/components/lib/tooltip/Tooltip.js @@ -86,12 +86,12 @@ function onClick(event) { function onKeydown(event) { const el = event.currentTarget; const hideDelay = el.$_ptooltipHideDelay; - + event.code === 'Escape' && hide(event.currentTarget, hideDelay); } function tooltipActions(el) { - if (el.$_ptooltipDisabled || !DomHandler.isExist(el) ) { + if (el.$_ptooltipDisabled || !DomHandler.isExist(el)) { return; }