Merge pull request #1709 from cupgit/fix_double_curl
Only add 'curlCommand' if the 'curl' class is used on a div
This commit is contained in:
2
dist/swagger-ui.js
vendored
2
dist/swagger-ui.js
vendored
@@ -31928,7 +31928,7 @@ SwaggerUi.Views.OperationView = Backbone.View.extend({
|
|||||||
//adds curl output
|
//adds curl output
|
||||||
var curlCommand = this.model.asCurl(this.map);
|
var curlCommand = this.model.asCurl(this.map);
|
||||||
curlCommand = curlCommand.replace('!', '!');
|
curlCommand = curlCommand.replace('!', '!');
|
||||||
$( '.curl', $(this.el)).html('<pre>' + curlCommand + '</pre>');
|
$( 'div.curl', $(this.el)).html('<pre>' + curlCommand + '</pre>');
|
||||||
|
|
||||||
// only highlight the response if response is less than threshold, default state is highlight response
|
// only highlight the response if response is less than threshold, default state is highlight response
|
||||||
var opts = this.options.swaggerOptions;
|
var opts = this.options.swaggerOptions;
|
||||||
|
|||||||
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
@@ -645,7 +645,7 @@ SwaggerUi.Views.OperationView = Backbone.View.extend({
|
|||||||
//adds curl output
|
//adds curl output
|
||||||
var curlCommand = this.model.asCurl(this.map);
|
var curlCommand = this.model.asCurl(this.map);
|
||||||
curlCommand = curlCommand.replace('!', '!');
|
curlCommand = curlCommand.replace('!', '!');
|
||||||
$( '.curl', $(this.el)).html('<pre>' + curlCommand + '</pre>');
|
$( 'div.curl', $(this.el)).html('<pre>' + curlCommand + '</pre>');
|
||||||
|
|
||||||
// only highlight the response if response is less than threshold, default state is highlight response
|
// only highlight the response if response is less than threshold, default state is highlight response
|
||||||
var opts = this.options.swaggerOptions;
|
var opts = this.options.swaggerOptions;
|
||||||
|
|||||||
Reference in New Issue
Block a user