fixed MainView for ES5 browser.
calling ES6 String.prototype.startWith doesn't work in all browsers yet.
This commit is contained in:
@@ -68,7 +68,7 @@ SwaggerUi.Views.MainView = Backbone.View.extend({
|
||||
} else {
|
||||
|
||||
// Default validator
|
||||
if(window.location.protocol.startsWith('http')) {
|
||||
if(window.location.protocol.indexOf('http') === 0) {
|
||||
this.model.validatorUrl = window.location.protocol + '//online.swagger.io/validator';
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user