From 98ccc8338c68494285b7e4252e8bf33585a43529 Mon Sep 17 00:00:00 2001 From: MaxJa4 <74194322+MaxJa4@users.noreply.github.com> Date: Sun, 9 Feb 2025 16:46:28 +0100 Subject: [PATCH] Show tooltip sooner --- static/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/index.js b/static/index.js index 99a7ded..2510301 100644 --- a/static/index.js +++ b/static/index.js @@ -7,7 +7,7 @@ function initTooltips(elementRoot) { tooltipTriggerList.forEach((elem) => { new bootstrap.Tooltip(elem, { trigger: 'hover', - delay: {show: 1000, hide: 0}, + delay: {show: 500, hide: 0}, container: 'body' }); });