contented/static/index.html

58 lines
1.3 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Loading</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type="text/css">
html, body {
font-family: sans-serif;
}
#surrogate-area {
height:300px;
2017-10-08 01:11:16 +00:00
}
/* hide close button */
.contented-close {
display: none;
}
</style>
</head>
<body>
<div id="surrogate-area">
Loading...
</div>
<script type="text/javascript" src="/jquery-1.12.4.min.js"></script>
<script type="text/javascript" src="/sdk.js"></script>
<script type="text/javascript">
"use strict";
2017-10-08 03:27:04 +00:00
// Handle errors
window.addEventListener('error', function(message) {
alert(message);
window.location.href = window.location.href;
})
// Set page title
$.get("/about", function(ret) {
$("title").text(ret.AppTitle);
});
// Load upload widget
2017-10-08 01:49:00 +00:00
contented.init("#surrogate-area", function(items) {
2017-10-08 02:22:41 +00:00
var $table = $("<table>");
for (var i = 0; i < items.length; ++i) {
$table.append($("<tr>").append([
$("<td>").text(items[i]),
$("<td>").html("<a target='_blank' href='/get/" + items[i] + "'>get</a>"),
2017-10-08 02:22:41 +00:00
$("<td>").html("<a target='_blank' href='/info/" + items[i] + "'>info</a>")
]))
}
$("#surrogate-area").html($table);
});
</script>
</body>
</html>