-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
31 lines (30 loc) · 982 Bytes
/
test.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
<!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 (Test)</title>
<!-- -->
<script src="../enyo/enyo.js" type="text/javascript"></script>
<!-- -->
<script src="../lib/foss/ace-builds/src/ace.js" type="text/javascript"></script>
<!-- -->
<script src="../node_modules/less/dist/less-1.3.3.min.js" type="text/javascript"></script>
<!-- -->
<script src="package.js" type="text/javascript"></script>
<!-- -->
<script src="../test/testrunner/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>