8 lines
193 B
JavaScript
8 lines
193 B
JavaScript
|
'use strict';
|
||
|
|
||
|
window.onload = () => {
|
||
|
const data = JSON.parse(document.getElementById('swagger-data').innerText);
|
||
|
|
||
|
Redoc.init(data.spec, {}, document.getElementById('swagger-ui'));
|
||
|
};
|