-
Notifications
You must be signed in to change notification settings - Fork 49
/
debug.html
26 lines (25 loc) · 994 Bytes
/
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
<!doctype html>
<html>
<head>
<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" />
<title>Ares2 IDE (Debug)</title>
<script src="enyo/enyo.js" type="text/javascript"></script>
<script src="node_modules/less/dist/less-1.3.3.min.js" type="text/javascript"></script>
<!-- state machine must be before ace & ace cannot be minified (due to its modules) -->
<script src="lib/foss/state-machine-2.2.0.min.js" charset="utf-8"></script>
<script src="lib/foss/ace-builds/src-min/ace.js" charset="utf-8"></script>
<!-- -->
<script src="package.js" type="text/javascript"></script>
</head>
<body class="enyo-unselectable">
<script type="text/javascript">
var loc = window.location.pathname.split("/");
if (loc[1] === "ide") {
new Ares().renderInto(document.body);
} else {
new Preview().renderInto(document.body);
}
</script>
</body>
</html>