load screen should only be hidden once all requests are complete

This commit is contained in:
Ross
2021-03-01 08:42:16 +00:00
parent c8a3aa1549
commit 865cd9b1a6
+1 -1
View File
@@ -1982,7 +1982,7 @@ $(document).ajaxStart(function () {
$("#loading").show(); $("#loading").show();
}); });
$(document).ajaxComplete(function () { $(document).ajaxStop(function () {
$("#loading").hide(); $("#loading").hide();
}); });