-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
32 lines (32 loc) · 878 Bytes
/
index.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
32
<html>
<head>
<title>zajal</title>
<style type="text/css">
body {
margin: 0;
background: black;
}
#loading {
color: white;
text-align: center;
font-family: monospace;
}
</style>
</head>
<body>
<div id="sketch">
<div id="loading">loading</div>
</div>
<script type="text/javascript" src="node_modules/clojurescript/lib/bootstrap.js"></script>
<script type="text/javascript" src="node_modules/pixi.js/dist/pixi.js"></script>
<script type="text/javascript" src="scratch/virtual-pixi.js"></script>
<script type="text/javascript">
PIXI.Point.prototype.toString = function() {
return this.x + " " + this.y;
}
</script>
<!-- <script type="text/javascript" src="node_modules/three/build/three.js"></script> -->
<script type="text/javascript" src="js/zajal.js"></script>
<script type="text/javascript" src="js/repl.js"></script>
</body>
</html>