Code cleanup, no functional changes

This commit is contained in:
2023-06-27 19:39:11 +12:00
parent b70a36003a
commit ad36da0bb1
64 changed files with 466 additions and 438 deletions

View File

@@ -119,7 +119,7 @@
async : true,
cache : false,
beforeSend : function() {
if (c++ == 0) {
if (c++ === 0) {
icon.removeClass('d-none');
}
},
@@ -130,7 +130,7 @@
process(data);
},
complete : function() {
if (--c == 0) {
if (--c === 0) {
icon.addClass('d-none');
}
}