updated distro to include #493

This commit is contained in:
Tony Tam
2014-07-14 13:42:57 -06:00
parent 50ded295d9
commit 9b9b5b4551
2 changed files with 2 additions and 3 deletions

3
dist/swagger-ui.js vendored
View File

@@ -1,5 +1,4 @@
// swagger-ui.js
// version 2.0.18
$(function() {
// Helper function for vertically aligning DOM elements
@@ -1970,7 +1969,7 @@ helpers = this.merge(helpers, Handlebars.helpers); data = data || {};
$(".request_url", $(this.el)).html("<pre>" + url + "</pre>");
$(".response_code", $(this.el)).html("<pre>" + response.status + "</pre>");
$(".response_body", $(this.el)).html(response_body);
$(".response_headers", $(this.el)).html("<pre>" + JSON.stringify(response.headers, null, " ").replace(/\n/g, "<br>") + "</pre>");
$(".response_headers", $(this.el)).html("<pre>" + _.escape(JSON.stringify(response.headers, null, " ")).replace(/\n/g, "<br>") + "</pre>");
$(".response", $(this.el)).slideDown();
$(".response_hider", $(this.el)).show();
$(".response_throbber", $(this.el)).hide();

File diff suppressed because one or more lines are too long