We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
function HideTopbarPlugin() { // this plugin overrides the Topbar component to return nothing return { components: { Topbar: function() { return null } } } } SwaggerUIBundle({ url: "http://petstore.swagger.io/v2/swagger.json", dom_id: '#swagger-ui', presets: [ SwaggerUIBundle.presets.apis, SwaggerUIStandalonePreset ], plugins: [ SwaggerUIBundle.plugins.DownloadUrl, HideTopbarPlugin ], layout: "StandaloneLayout" })