rebuilt per #418
This commit is contained in:
12
dist/swagger-ui.js
vendored
12
dist/swagger-ui.js
vendored
@@ -1676,11 +1676,15 @@ helpers = this.merge(helpers, Handlebars.helpers); data = data || {};
|
|||||||
};
|
};
|
||||||
|
|
||||||
OperationView.prototype.wrap = function(data) {
|
OperationView.prototype.wrap = function(data) {
|
||||||
var headerArray, headers, i, o, _i, _ref5, _ref6;
|
var h, headerArray, headers, i, o, _i, _len;
|
||||||
headers = {};
|
headers = {};
|
||||||
headerArray = data.getAllResponseHeaders().split(":");
|
headerArray = data.getAllResponseHeaders().split("\r");
|
||||||
for (i = _i = 0, _ref5 = headerArray.length / 2, _ref6 = 2.; _ref6 > 0 ? _i <= _ref5 : _i >= _ref5; i = _i += _ref6) {
|
for (_i = 0, _len = headerArray.length; _i < _len; _i++) {
|
||||||
headers[headerArray[i]] = headerArray[i + 1];
|
i = headerArray[_i];
|
||||||
|
h = i.split(':');
|
||||||
|
if (h[0] !== void 0 && h[1] !== void 0) {
|
||||||
|
headers[h[0].trim()] = h[1].trim();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
o = {};
|
o = {};
|
||||||
o.content = {};
|
o.content = {};
|
||||||
|
|||||||
2
dist/swagger-ui.min.js
vendored
2
dist/swagger-ui.min.js
vendored
File diff suppressed because one or more lines are too long
@@ -935,7 +935,7 @@ table {
|
|||||||
color: #0f6ab4;
|
color: #0f6ab4;
|
||||||
}
|
}
|
||||||
.swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.content {
|
.swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.content {
|
||||||
background-color: #DFDF29;
|
background-color: #ebf3f9;
|
||||||
border: 1px solid #c3d9ec;
|
border: 1px solid #c3d9ec;
|
||||||
}
|
}
|
||||||
.swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.content h4 {
|
.swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.content h4 {
|
||||||
|
|||||||
Reference in New Issue
Block a user