From f45e657583eaccc2e5cf7edba6bfcfbcd440b57f Mon Sep 17 00:00:00 2001 From: byronbest <43890914+byronbest@users.noreply.github.com> Date: Mon, 9 Dec 2019 09:55:09 -0800 Subject: [PATCH] no need to ease when not visible --- public_html/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public_html/script.js b/public_html/script.js index bdac922..118b94b 100644 --- a/public_html/script.js +++ b/public_html/script.js @@ -1136,7 +1136,7 @@ function refreshHighlighted() { if (infoBox.css('visibility', 'visible')) { infoBox.animate({ left: x, top: y }, 500); } else { - infoBox.css({ left: x, top: y }, 500); + infoBox.css({ left: x, top: y }); } infoBox.fadeIn(100);