-
Notifications
You must be signed in to change notification settings - Fork 0
/
debug.html
28 lines (28 loc) · 1.23 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
<!DOCTYPE html>
<html manifest="manifest.appcache">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<title>Enyo 2 Sampler</title>
<link rel="shortcut icon" href="assets/favicon.ico"/>
<!-- -->
<meta http-equiv="Content-Type" content="text/html; charset=utf8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<!-- iOS Web App stuff -->
<meta name="apple-mobile-web-app-capable" content="yes"/>
<link rel="apple-touch-icon" href="assets/icons/apple-icon-57.png"/>
<link rel="apple-touch-icon" sizes="72x72" href="assets/icons/apple-icon-72.png"/>
<link rel="apple-touch-icon" sizes="114x114" href="assets/icons/apple-icon-114.png"/>
<link rel="apple-touch-icon" sizes="144x144" href="assets/icons/apple-icon-144.png"/>
<!-- Chrome Web App stuff -->
<link rel="chrome-webstore-item" href="https://chrome.google.com/webstore/detail/epkfgponkmhnfmnjdeckalckabbhkkim">
<!-- enyo (debug) -->
<script src="enyo/enyo.js"></script>
<!-- application (debug) -->
<script src="source/package.js" type="text/javascript"></script>
</head>
<body class="enyo-unselectable">
<script>
new App().renderInto(document.body);
</script>
</body>
</html>