redoc/tests/e2e/index.html

24 lines
639 B
HTML
Raw Normal View History

2016-01-15 23:34:28 +03:00
<!DOCTYPE html>
<html>
<head>
2016-01-17 14:51:21 +03:00
<meta charset="UTF-8">
2016-01-15 23:34:28 +03:00
<title>ReDoc</title>
</head>
2016-12-25 20:15:24 +03:00
<body style="margin:0">
<redoc >
2016-01-15 23:34:28 +03:00
Loading...
</redoc>
<!-- ReDoc built file with all dependencies included -->
2016-08-28 21:46:10 +03:00
<script src="redoc.min.js"> </script>
2016-01-15 23:34:28 +03:00
<script>
2016-01-17 14:51:21 +03:00
window.redocError = null;
2016-01-15 23:34:28 +03:00
/* init redoc */
2016-10-31 21:15:56 +03:00
var url = window.location.search.substr(5) || 'http://rebilly.github.io/ReDoc/swagger.yaml';
2016-08-31 21:58:55 +03:00
Redoc.init(decodeURIComponent(url), {disableLazySchemas: true, suppressWarnings: true}).then(function() {}, function(err) {
2016-01-17 14:51:21 +03:00
window.redocError = err;
});
2016-01-15 23:34:28 +03:00
</script>
</body>
</html>