forked from jdachtera/grundschrift-app-source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdebug.html
40 lines (33 loc) · 1.36 KB
/
debug.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Grundschrift App</title>
<link rel="shortcut icon" href="assets/favicon.ico"/>
<!-- -->
<meta http-equiv="Content-Type" content="text/html; charset=utf8"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<style>
html, body {
background: black;
}
</style>
<script>
var settings = JSON.parse(localStorage.settings || '{}');
if (settings.isDeveloperMode && settings.weinreHost) {
document.write('<scr' +'ipt src="http://' + settings.weinreHost + '/target/target-script-min.js#anonymous"></scr' + 'ipt>');
}
</script>
<!-- Less.js (uncomment for client-side rendering of less stylesheets; leave commented to use only CSS) -->
<script src="enyo/tools/minifier/node_modules/less/dist/less-1.3.3.min.js"></script>
<!-- enyo (debug) -->
<script src="enyo/enyo.js"></script>
<!-- application (debug) -->
<script src="source/package.js" type="text/javascript"></script>
<script src="cordova.js"></script>
</head>
<body class="enyo-unselectable" onload="onLoad()">
<div id="app"></div>
</body>
</html>