-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtest.html
More file actions
executable file
·52 lines (42 loc) · 1.21 KB
/
test.html
File metadata and controls
executable file
·52 lines (42 loc) · 1.21 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="author" content="Mike Chambers" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta name="copyright" content="Mike Chambers" />
<meta name="robots" content="index,follow" />
<title>TITLE</title>
<style>
#worldCanvas
{
background-color:#333333;
}
</style>
<!-- import the Easel library. Downloaded from:
http://easeljs.com/
-->
<script src="lib/easeljs.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/dojo/1.5/dojo/dojo.xd.js" type="text/javascript"></script>
<script type='text/javascript'>
var djConfig = {
isDebug: false,
parseOnLoad: true,
baseUrl: './',
};
</script>
<!--<script src="/libs/uow.js"></script>
-->
<!-- import the Easel library. Downloaded from:
http://easeljs.com/
-->
<script src="sonicZoom.js"></script>
<script src="gameLoader.js"></script>
</head>
<body onload="">
<div width="" height="" id="canvasWrapper">
<canvas width="" height="" id="worldCanvas" />
</div>
</body>
</html>