-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdebug.html
More file actions
31 lines (26 loc) · 1002 Bytes
/
debug.html
File metadata and controls
31 lines (26 loc) · 1002 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>MiTrendz</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"/>
<!-- Cordova (i.e., PhoneGap) -->
<script src="cordova.js" type="text/javascript" charset="utf-8"></script>
<!-- enyo (debug) -->
<script src="enyo/enyo.js"></script>
<!-- application (debug) -->
<script src="source/package.js" type="text/javascript"></script>
<!-- PhoneGap support package -->
<script src="lib/extra/phonegap/package.js" type="text/javascript"></script>
</head>
<body class="enyo-unselectable">
<script>
// tell Enyo to listen for deviceready event
enyo.dispatcher.listen(document, "deviceready");
new App().renderInto(document.body);
</script>
</body>
</html>