Make left sidebar item become <a>

This commit is contained in:
cuom1999 2023-09-17 00:18:30 -05:00
parent 8bb3812f97
commit 34da746408
6 changed files with 24 additions and 272 deletions

View file

@ -387,9 +387,8 @@ function onWindowReady() {
});
$('a').click(function() {
$("#loading-bar").show();
$("#loading-bar").animate({ width: "100%" }, 1500, function() {
$(this).hide();
$("#loading-bar").css({ width: 0});
$("#loading-bar").animate({ width: "100%" }, 2000, function() {
$(this).hide().css({ width: 0});
});
});
}