redoc/tests/e2e/index.html

24 lines
619 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>
<body>
2016-01-17 14:51:21 +03:00
<redoc>
2016-01-15 23:34:28 +03:00
Loading...
</redoc>
<!-- ReDoc built file with all dependencies included -->
2016-01-25 00:15:04 +03:00
<script src="dist/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-03-31 19:41:17 +03:00
var url = window.location.search.substr(5) || 'http://rebilly.github.io:80/SwaggerTemplateRepo/swagger.json';
Redoc.init(decodeURIComponent(url), {disableLazySchemas: 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>