* removing async:trues in code (because it's default), to make it easier to find async:false
This commit is contained in:
parent
c92dd66f24
commit
e91dbc1388
|
|
@ -18,7 +18,6 @@
|
|||
$.ajax({
|
||||
type: "GET",
|
||||
url: "/api/search.json?" + queryString,
|
||||
async: true,
|
||||
success: afterLoadBands,
|
||||
error: app.ajaxError
|
||||
});
|
||||
|
|
|
|||
|
|
@ -18,7 +18,6 @@
|
|||
$.ajax({
|
||||
type: "GET",
|
||||
url: "/api/search.json?" + queryString,
|
||||
async: true,
|
||||
success: afterLoadMusicians,
|
||||
error: app.ajaxError
|
||||
});
|
||||
|
|
|
|||
|
|
@ -45,7 +45,6 @@
|
|||
$.ajax({
|
||||
type: "GET",
|
||||
url: "/api/sessions?" + queryString,
|
||||
async: true,
|
||||
success: afterLoadSessions,
|
||||
complete: removeSpinner,
|
||||
error: app.ajaxError
|
||||
|
|
|
|||
Loading…
Reference in New Issue