From cba85de87679203582a632e23ae77fea2092d48f Mon Sep 17 00:00:00 2001 From: Skylar Ittner Date: Sat, 18 Nov 2017 15:44:22 -0700 Subject: [PATCH] Adjust clock seconds animation --- static/js/home.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/home.js b/static/js/home.js index 6f85706..ea121e6 100644 --- a/static/js/home.js +++ b/static/js/home.js @@ -20,7 +20,7 @@ function setClock() { if (interval < 5) { $('#seconds_bar div').animate({ width: "0%" - }, 1000, "linear", function () { + }, 500, "linear", function () { $('#seconds_bar div').animate({ width: (((5 - interval - 1) / 60) * 100) + "%" }, 1000 * (5 - interval - 1), "linear");