rebuilt
This commit is contained in:
6
dist/swagger-ui.js
vendored
6
dist/swagger-ui.js
vendored
@@ -24706,6 +24706,7 @@ window.SwaggerUi = Backbone.Router.extend({
|
||||
|
||||
// SwaggerUi accepts all the same options as SwaggerApi
|
||||
initialize: function(options) {
|
||||
console.log('SwaggerUi::initialize');
|
||||
options = options || {};
|
||||
|
||||
if (options.defaultModelRendering !== 'model') {
|
||||
@@ -25311,6 +25312,7 @@ SwaggerUi.Views.OperationView = Backbone.View.extend({
|
||||
},
|
||||
|
||||
initialize: function(opts) {
|
||||
console.log('OperationView::initialize');
|
||||
opts = opts || {};
|
||||
this.router = opts.router;
|
||||
this.auths = opts.auths;
|
||||
@@ -26148,6 +26150,7 @@ SwaggerUi.Views.ParameterView = Backbone.View.extend({
|
||||
},
|
||||
|
||||
initialize: function(){
|
||||
console.log('ParameterView::initialize');
|
||||
Handlebars.registerHelper('isArray', function(param, opts) {
|
||||
if (param.type.toLowerCase() === 'array' || param.allowMultiple) {
|
||||
return opts.fn(this);
|
||||
@@ -27262,6 +27265,7 @@ SwaggerUi.partials.signature = (function () {
|
||||
|
||||
SwaggerUi.Views.ResourceView = Backbone.View.extend({
|
||||
initialize: function(opts) {
|
||||
console.log('ResourceView::initialize');
|
||||
opts = opts || {};
|
||||
this.router = opts.router;
|
||||
this.auths = opts.auths;
|
||||
@@ -27354,7 +27358,7 @@ SwaggerUi.Views.SignatureView = Backbone.View.extend({
|
||||
},
|
||||
|
||||
initialize: function () {
|
||||
|
||||
console.log('SignatureView::initialize');
|
||||
},
|
||||
|
||||
render: function(){
|
||||
|
||||
18
dist/swagger-ui.min.js
vendored
18
dist/swagger-ui.min.js
vendored
File diff suppressed because one or more lines are too long
@@ -13,6 +13,7 @@ window.SwaggerUi = Backbone.Router.extend({
|
||||
|
||||
// SwaggerUi accepts all the same options as SwaggerApi
|
||||
initialize: function(options) {
|
||||
console.log('SwaggerUi::initialize');
|
||||
options = options || {};
|
||||
|
||||
if (options.defaultModelRendering !== 'model') {
|
||||
|
||||
@@ -14,6 +14,7 @@ SwaggerUi.Views.OperationView = Backbone.View.extend({
|
||||
},
|
||||
|
||||
initialize: function(opts) {
|
||||
console.log('OperationView::initialize');
|
||||
opts = opts || {};
|
||||
this.router = opts.router;
|
||||
this.auths = opts.auths;
|
||||
|
||||
@@ -6,6 +6,7 @@ SwaggerUi.Views.ParameterView = Backbone.View.extend({
|
||||
},
|
||||
|
||||
initialize: function(){
|
||||
console.log('ParameterView::initialize');
|
||||
Handlebars.registerHelper('isArray', function(param, opts) {
|
||||
if (param.type.toLowerCase() === 'array' || param.allowMultiple) {
|
||||
return opts.fn(this);
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
SwaggerUi.Views.ResourceView = Backbone.View.extend({
|
||||
initialize: function(opts) {
|
||||
console.log('ResourceView::initialize');
|
||||
opts = opts || {};
|
||||
this.router = opts.router;
|
||||
this.auths = opts.auths;
|
||||
|
||||
@@ -9,7 +9,7 @@ SwaggerUi.Views.SignatureView = Backbone.View.extend({
|
||||
},
|
||||
|
||||
initialize: function () {
|
||||
|
||||
console.log('SignatureView::initialize');
|
||||
},
|
||||
|
||||
render: function(){
|
||||
|
||||
Reference in New Issue
Block a user