-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (28 loc) · 1.1 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
<!DOCTYPE HTML>
<html manifest="">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=10, user-scalable=yes">
<title>Enraizar</title>
<script type="text/javascript">
var Ext = Ext || {};
Ext.beforeLoad = function (tags) {
var s = location.search;
var profile;
if (s.match(/\bdesktop\b/)) { profile = 'desktop' }
else if (s.match(/\bphone\b/)) { profile = 'phone' }
else { profile = tags.desktop ? 'desktop' : 'phone' }
Ext.manifest ='generatedFiles/' + profile;
};
</script>
<!-- The line below must be kept intact for Sencha Cmd to build your application -->
<script id="microloader" data-app="18b2be6b-0acf-4db6-b64f-47623f3f8121" type="text/javascript" src="generatedFiles/bootstrap.js"></script>
</head>
<body class="launching">
<div id="splash" style="margin-top:20%;font-family:Arial;font-size:64px;text-align:center;color:#404040;">
<div id="theLoadingText">LOADING...</div>
<i style="margin:20px;" class="fa fa-spinner fa-spin"></i>
</div>
</body>
</html>