@@ -1,3 +1,4 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Swagger UI</title>
|
<title>Swagger UI</title>
|
||||||
|
|||||||
@@ -65,6 +65,14 @@ function clippyCopiedCallback(a) {
|
|||||||
function log() {
|
function log() {
|
||||||
if (window.console) console.log.apply(console,arguments);
|
if (window.console) console.log.apply(console,arguments);
|
||||||
}
|
}
|
||||||
|
// Handle browsers that do console incorrectly (IE9 and below, see http://stackoverflow.com/a/5539378/7913)
|
||||||
|
if (Function.prototype.bind && console && typeof console.log == "object") {
|
||||||
|
[
|
||||||
|
"log","info","warn","error","assert","dir","clear","profile","profileEnd"
|
||||||
|
].forEach(function (method) {
|
||||||
|
console[method] = this.bind(console[method], console);
|
||||||
|
}, Function.prototype.call);
|
||||||
|
}
|
||||||
|
|
||||||
var Docs = {
|
var Docs = {
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user