1 <!-- HTML for static distribution bundle build -->
6 <title>Swagger UI
</title>
7 <link rel=
"stylesheet" type=
"text/css" href=
"./swagger-ui.css" />
8 <link rel=
"icon" type=
"image/png" href=
"./favicon-32x32.png" sizes=
"32x32" />
9 <link rel=
"icon" type=
"image/png" href=
"./favicon-16x16.png" sizes=
"16x16" />
13 box-sizing: border-box;
14 overflow: -moz-scrollbars-vertical;
34 <div id=
"swagger-ui"></div>
36 <script src=
"./swagger-ui-bundle.js" charset=
"UTF-8"> </script>
37 <script src=
"./swagger-ui-standalone-preset.js" charset=
"UTF-8"> </script>
39 window
.onload = function() {
40 // Begin Swagger UI call region
41 const ui
= SwaggerUIBundle({
42 url
: "openemr-api.yaml",
43 dom_id
: '#swagger-ui',
44 oauth2RedirectUrl
: `${window.location.protocol}//${window.location.host}${window.location.pathname.replace(/[^/]*$/, '')}oauth2-redirect.html`,
47 SwaggerUIBundle
.presets
.apis
49 defaultModelsExpandDepth
: -1
51 // End Swagger UI call region