-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathindex-web.html
executable file
·38 lines (37 loc) · 1.63 KB
/
index-web.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
<!DOCTYPE html>
<html>
<head>
<title>BIN Framework</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"/>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta http-equiv="Access-Control-Allow-Origin" content="*"/>
<meta name="format-detection" content="telephone=no"/>
<meta http-equiv="X-Frame-Options" content="ALLOW-FROM">
<meta http-equiv="pragma" content="no-cache"/>
<!-- bin frame work -->
<script>
document.documentElement.style.fontSize = document.documentElement.clientWidth/640*40+"px";
</script>
<link href="./bin/res/css/bpf_hash_bin.css" rel="stylesheet"/>
<!-- app css -->
<link href="./app/css/bpf_hash_app.css" rel="stylesheet"/>
</head>
<body>
<script>
// config for this page
var pageConfig =
{
onInit : function(){/* Do some init work here for this web page*/},
onRun : function(){/* Do some work here for this web page when application running*/},
requireConfig : {},
classConfig : {},
packages : // The packages used for this page
[
]
}
</script>
<script type="text/javascript" src="./bin/3rdParty/requirejs/bpf_hash_require.js" data-main="./bin/web/bpf_hash_requireMain.js"></script>
</body>
</html>