This commit is contained in:
Tony Tam
2014-02-03 08:28:22 -08:00
parent 7dd5142df2
commit 2378b176f5
2 changed files with 8 additions and 4 deletions

8
dist/lib/swagger.js vendored
View File

@@ -53,7 +53,9 @@
useJQuery: this.useJQuery,
url: this.url,
method: "get",
headers: {},
headers: {
accept: "application/json"
},
on: {
error: function(response) {
if (_this.url.substring(0, 4) !== 'http') {
@@ -304,7 +306,9 @@
url: this.url,
method: "get",
useJQuery: this.useJQuery,
headers: {},
headers: {
accept: "application/json"
},
on: {
error: function(response) {
return _this.api.fail("Unable to read api '" + _this.name + "' from path " + _this.url + " (server returned " + response.statusText + ")");