You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

22 rivejä
611 B

  1. window.onload = function() {
  2. //<editor-fold desc="Changeable Configuration Block">
  3. // the following lines will be replaced by docker/configurator, when it runs in a docker-container
  4. var jsonURL = document.location.origin + "/Swagger/swagger.json";
  5. window.ui = SwaggerUIBundle({
  6. url: "http://localhost:3003/api/v2.0/swagger.json",
  7. dom_id: '#swagger-ui',
  8. deepLinking: true,
  9. presets: [
  10. SwaggerUIBundle.presets.apis,
  11. SwaggerUIStandalonePreset
  12. ],
  13. plugins: [
  14. SwaggerUIBundle.plugins.DownloadUrl
  15. ],
  16. layout: "StandaloneLayout"
  17. });
  18. //</editor-fold>
  19. };