From 3b309500c3311480910b554312123d9599bb872d Mon Sep 17 00:00:00 2001 From: TwinProduction Date: Fri, 1 May 2020 17:22:30 -0400 Subject: [PATCH] Decrease tooltip fade timer from 2s to 500ms --- static/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/index.html b/static/index.html index 65648dcc..40aa3c19 100644 --- a/static/index.html +++ b/static/index.html @@ -147,7 +147,7 @@ if (!userClickedStatus) { timerHandler = setTimeout(function () { $("#tooltip").hide(); - }, 2000); + }, 500); } }