From 555191009c9ca1e584ac66fd2821795395ea44ec Mon Sep 17 00:00:00 2001 From: cuom1999 Date: Mon, 25 Sep 2023 02:16:51 -0500 Subject: [PATCH] Handle special case for loading bar --- resources/common.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/common.js b/resources/common.js index 65fb8b3..d9c7d1e 100644 --- a/resources/common.js +++ b/resources/common.js @@ -386,6 +386,9 @@ function onWindowReady() { }); }); $('a').click(function() { + if ($(this).attr('href') === '#') { + return; + } $("#loading-bar").show(); $("#loading-bar").animate({ width: "100%" }, 2000, function() { $(this).hide().css({ width: 0});