This repository was archived by the owner on Feb 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdebug.html
42 lines (42 loc) · 1.45 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
41
42
<!DOCTYPE html>
<html>
<head>
<title>Chuisy</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"/>
<script>
window.loadStart = new Date();
</script>
<!-- emitter client for cube analytics -->
<script src="lib/misc/cube-emitter.js"></script>
<!-- register handler for error tracking -->
<script src="source/track-errors.js"></script>
<!-- cordova iOS -->
<script type="text/javascript" src="lib/cordova/cordova-2.7.0.js"></script>
<!-- enyo (debug) -->
<script src="enyo/enyo.js"></script>
<!-- application (debug) -->
<script src="package.js" type="text/javascript"></script>
<!-- leaflet -->
<script type="text/javascript">
touchMove = function(event) {
// Prevent scrolling on this element
event.preventDefault();
}
</script>
</head>
<body class="enyo-unselectable">
<script>
// Used to handle launches via custom url shemes in phonegap
function handleOpenURL(url) {
setTimeout(function () {
enyo.Signals.send("onHandleOpenUrl", {url: url});
}, 10);
}
new App().renderInto(document.body);
</script>
</body>
</html>