This repository has been archived by the owner on Oct 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
41 lines (39 loc) · 1.83 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!--<meta http-equiv="X-UA-Compatible" content="IE=10"/>-->
<!--<meta content="native" name="cursor-event-mode" />
<meta content="native" name="touch-event-mode" />-->
<link rel="apple-touch-icon-precomposed" href="images/desktop.png" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-itunes-app" content="app-id=996502992">
<meta name="apple-touch-fullscreen" content="yes" />
<title>DataSpace-2.0 TouchUI</title>
<script type="text/javascript">
(function() {
var p = navigator.platform,
vpmeta = 'width=device-width, height=device-height, user-scalable=no',
msVPS;
if (p === 'iPad' || p === 'iPhone' || p === 'iPod' ) {
vpmeta = 'user-scalable=no';
}
if (navigator.userAgent.match(/IEMobile\/10\.0/)) {
msVPS = document.createElement('style');
msVPS.appendChild(document.createTextNode('@-ms-viewport{width:auto!important}'));
document.getElementsByTagName('head')[0].appendChild(msVPS);
}
document.head.insertAdjacentHTML(
'afterbegin', '<meta name="viewport" content="' + vpmeta + '" />');
})();
</script>
<link rel="stylesheet" href="css/sencha-touch.css">
<link rel="stylesheet" href="css/app.css">
</head>
<body></body>
<script type="text/javascript" src="sencha-touch-all.js"></script>
<script type="text/javascript" src="agorum.js"></script>
<script type="text/javascript" src="3rdparty/Plupload2.js"></script>
<script type="text/javascript" src="app.js"></script>
</html>