2017-10-07 05:05:58 +00:00
|
|
|
<!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;
|
2017-10-07 05:05:58 +00:00
|
|
|
}
|
|
|
|
</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 01:10:47 +00:00
|
|
|
contented.init("#surrogate-area", function(itm) {
|
2017-10-08 00:45:55 +00:00
|
|
|
console.log(itm);
|
2017-10-07 05:05:58 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|