Use petstore for continuserv swagger docs

Matrix.org's swagger browser is behind https, which means it can't read the
swagger from a continuserv on http. Use the petstore instead.
This commit is contained in:
Richard van der Hoff 2017-11-14 13:02:43 +00:00
parent 85340a9e00
commit 0cbf533625

View file

@ -3,7 +3,7 @@
window.onload = function() { window.onload = function() {
var url = new URL(window.location); var url = new URL(window.location);
url.pathname += "api-docs.json"; url.pathname += "api-docs.json";
var newLoc = "http://matrix.org/docs/api/client-server/?url=" + encodeURIComponent(url); var newLoc = "http://petstore.swagger.io/?url=" + encodeURIComponent(url);
document.getElementById("apidocs").href = newLoc; document.getElementById("apidocs").href = newLoc;
}; };
</script> </script>