* removing async:trues in code (because it's default), to make it easier to find async:false

This commit is contained in:
Seth Call 2014-01-08 00:44:56 +00:00
parent c92dd66f24
commit e91dbc1388
3 changed files with 0 additions and 3 deletions

View File

@ -18,7 +18,6 @@
$.ajax({
type: "GET",
url: "/api/search.json?" + queryString,
async: true,
success: afterLoadBands,
error: app.ajaxError
});

View File

@ -18,7 +18,6 @@
$.ajax({
type: "GET",
url: "/api/search.json?" + queryString,
async: true,
success: afterLoadMusicians,
error: app.ajaxError
});

View File

@ -45,7 +45,6 @@
$.ajax({
type: "GET",
url: "/api/sessions?" + queryString,
async: true,
success: afterLoadSessions,
complete: removeSpinner,
error: app.ajaxError