|
5 | 5 | <meta charset="UTF-8">
|
6 | 6 | <title>Swagger UI</title>
|
7 | 7 | <link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700|Source+Code+Pro:300,600|Titillium+Web:400,600,700" rel="stylesheet">
|
| 8 | + <link rel="stylesheet" type="text/css" href="./swagger-ui.css" > |
8 | 9 | <link rel="icon" type="image/png" href="./favicon-32x32.png" sizes="32x32" />
|
9 | 10 | <link rel="icon" type="image/png" href="./favicon-16x16.png" sizes="16x16" />
|
10 | 11 | <style>
|
11 | 12 | html
|
12 | 13 | {
|
13 |
| - box-sizing: border-box; |
14 |
| - overflow: -moz-scrollbars-vertical; |
15 |
| - overflow-y: scroll; |
| 14 | + box-sizing: border-box; |
| 15 | + overflow: -moz-scrollbars-vertical; |
| 16 | + overflow-y: scroll; |
16 | 17 | }
|
17 | 18 | *,
|
18 | 19 | *:before,
|
19 | 20 | *:after
|
20 | 21 | {
|
21 |
| - box-sizing: inherit; |
| 22 | + box-sizing: inherit; |
22 | 23 | }
|
23 | 24 |
|
24 | 25 | body {
|
|
33 | 34 | <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="position:absolute;width:0;height:0">
|
34 | 35 | <defs>
|
35 | 36 | <symbol viewBox="0 0 20 20" id="unlocked">
|
36 |
| - <path d="M15.8 8H14V5.6C14 2.703 12.665 1 10 1 7.334 1 6 2.703 6 5.6V6h2v-.801C8 3.754 8.797 3 10 3c1.203 0 2 .754 2 2.199V8H4c-.553 0-1 .646-1 1.199V17c0 .549.428 1.139.951 1.307l1.197.387C5.672 18.861 6.55 19 7.1 19h5.8c.549 0 1.428-.139 1.951-.307l1.196-.387c.524-.167.953-.757.953-1.306V9.199C17 8.646 16.352 8 15.8 8z"></path> |
| 37 | + <path d="M15.8 8H14V5.6C14 2.703 12.665 1 10 1 7.334 1 6 2.703 6 5.6V6h2v-.801C8 3.754 8.797 3 10 3c1.203 0 2 .754 2 2.199V8H4c-.553 0-1 .646-1 1.199V17c0 .549.428 1.139.951 1.307l1.197.387C5.672 18.861 6.55 19 7.1 19h5.8c.549 0 1.428-.139 1.951-.307l1.196-.387c.524-.167.953-.757.953-1.306V9.199C17 8.646 16.352 8 15.8 8z"></path> |
37 | 38 | </symbol>
|
38 | 39 |
|
39 | 40 | <symbol viewBox="0 0 20 20" id="locked">
|
|
66 | 67 |
|
67 | 68 | <div id="swagger-ui"></div>
|
68 | 69 |
|
| 70 | +<script src="./swagger-ui-bundle.js"> </script> |
| 71 | +<script src="./swagger-ui-standalone-preset.js"> </script> |
69 | 72 | <script>
|
70 | 73 | window.onload = function() {
|
71 | 74 | window["SwaggerUIBundle"] = window["swagger-ui-bundle"]
|
72 | 75 | window["SwaggerUIStandalonePreset"] = window["swagger-ui-standalone-preset"]
|
73 |
| -
|
74 |
| - var spec = '<%- htmlWebpackPlugin.options.spec %>' |
75 | 76 | // Build a system
|
76 | 77 | const ui = SwaggerUIBundle({
|
77 | 78 | url: "http://petstore.swagger.io/v2/swagger.json",
|
|
0 commit comments