Fix all JSHint errors

This commit is contained in:
Mohsen Azimi
2015-03-12 16:50:57 -07:00
parent 096cd120a4
commit 07ac7fcf95
10 changed files with 22 additions and 20 deletions

View File

@@ -229,7 +229,7 @@ SwaggerUi.Views.OperationView = Backbone.View.extend({
addStatusCode: function(statusCode) {
// Render status codes
var statusCodeView = new StatusCodeView({model: statusCode, tagName: 'tr'});
var statusCodeView = new SwaggerUi.Views.StatusCodeView({model: statusCode, tagName: 'tr'});
$('.operation-status', $(this.el)).append(statusCodeView.render().el);
},