-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdebug-firebug.html
More file actions
24 lines (24 loc) · 1 KB
/
debug-firebug.html
File metadata and controls
24 lines (24 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html debug="true">
<head>
<title>Aurora Beta</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 type="text/javascript" src="https://getfirebug.com/firebug-lite.js"></script>
<!-- enyo (debug) -->
<script src="enyo/enyo.js"></script>
<!-- application (debug) -->
<script src="source/package.js" type="text/javascript"></script>
</head>
<body class="enyo-unselectable">
<div id="subdiv" style="height:100px; width:200px; border:2px solid red;">App goes here</div>
<div id="subdiv2" style="height:100px; width:200px; border:2px solid green;">App goes not here</div>
<script>
//new App().renderInto(document.getElementById("subdiv"));
new App().start();
</script>
</body>
</html>