Add loading bar

This commit is contained in:
cuom1999 2023-09-01 18:09:30 -05:00
parent 9a89c5a15a
commit 41ba0894ac
4 changed files with 22 additions and 2 deletions

View file

@ -385,6 +385,12 @@ function onWindowReady() {
showTooltip(e.trigger, fallbackMessage(e.action));
});
});
$('a').click(function() {
$("#loading-bar").show();
$("#loading-bar").animate({ width: "100%" }, 1500, function() {
$(this).hide();
});
});
}
$(function() {
@ -429,4 +435,5 @@ $(function() {
$('html').click(function () {
$nav_list.hide();
});
});