fixed return type

This commit is contained in:
Tony Tam
2015-01-29 21:07:46 -08:00
parent 51b7b984b7
commit 1418f12f1d
2 changed files with 3 additions and 3 deletions

4
dist/swagger-ui.js vendored
View File

@@ -867,12 +867,12 @@ MainView = (function(_super) {
resources[id] = resource;
this.addResource(resource, this.model.auths);
}
this;
return $('.propWrap').hover(function() {
$('.propWrap').hover(function() {
return $('.optionsWrapper', $(this)).show();
}, function() {
return $('.optionsWrapper', $(this)).hide();
});
return this;
};
MainView.prototype.addResource = function(resource, auths) {

File diff suppressed because one or more lines are too long