rebuilt per #417

This commit is contained in:
Tony Tam
2014-03-18 19:47:04 -07:00
parent 9e8e62c17c
commit aeffecd8d4
3 changed files with 5 additions and 3 deletions

2
dist/css/screen.css vendored
View File

@@ -935,7 +935,7 @@ table {
color: #0f6ab4;
}
.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;
}
.swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.content h4 {

4
dist/swagger-ui.js vendored
View File

@@ -1630,7 +1630,9 @@ helpers = this.merge(helpers, Handlebars.helpers); data = data || {};
for (_j = 0, _len1 = _ref6.length; _j < _len1; _j++) {
param = _ref6[_j];
if (param.paramType === 'form') {
bodyParam.append(param.name, map[param.name]);
if (map[param.name] !== void 0) {
bodyParam.append(param.name, map[param.name]);
}
}
}
headerParams = {};

File diff suppressed because one or more lines are too long