-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (41 loc) · 1.21 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" no-manifest="ghtest.appcache">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="apple-mobile-web-app-status-bar-style" content="black"/>
<title>ghtest</title>
<link rel="shortcut icon" href="./img/favicon.png" type="image/x-icon"/>
<link rel="icon" href="./img/favicon.png" type="image/x-icon"/>
<style type="text/css">
html,body,iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
border: 0;
}
iframe {
overflow: hidden;
}
</style>
</head>
<body onload="init()">
<iframe id="UIROOT" frameborder="0" src="./html/splash.xhtml"></iframe>
<iframe id="UIBOOT" frameborder="0" src="./html/console.xhtml"></iframe>
<script src="./TIBET-INF/tibet/lib/src/tibet_init.min.js"
type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
function init() {
TP.boot.launch({ path: { lib_root: '~app_inf/tibet' } });
}
//]]>
</script>
</body>
</html>