Code cleanup, no functional changes
This commit is contained in:
@@ -155,7 +155,7 @@
|
||||
async : true,
|
||||
cache : false,
|
||||
beforeSend : function() {
|
||||
if (c++ == 0) {
|
||||
if (c++ === 0) {
|
||||
$('i.bi-search').addClass('spinner-grow spinner-grow-sm');
|
||||
}
|
||||
},
|
||||
@@ -166,7 +166,7 @@
|
||||
process(data);
|
||||
},
|
||||
complete : function() {
|
||||
if (--c == 0) {
|
||||
if (--c === 0) {
|
||||
$('i.bi-search').removeClass('spinner-grow spinner-grow-sm');
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user