-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 loc) · 1.12 KB
/
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
<!DOCTYPE html>
<html>
<head>
<script src='/public/javascripts/jQuery.min.js' type='text/javascript'></script>
<script src='/public/javascripts/Point.js' type='text/javascript'></script>
<script src='/public/javascripts/Renderable.js' type='text/javascript'></script>
<script src='/public/javascripts/GithubRepoRender.js' type='text/javascript'></script>
<script src='/public/javascripts/GithubUserRender.js' type='text/javascript'></script>
<script src='/public/javascripts/Widget.js' type='text/javascript'></script>
<script src='/public/javascripts/PhysicsEngine.js' type='text/javascript'></script>
<script src='/public/javascripts/Animation.js' type='text/javascript'></script>
</head>
<body>
<div>
<form id='user_selector'>
<input id='user_name' type='text'/>
<input type='submit'/>
</form>
</div>
<div id='physics_box' style='display:none'>
<canvas id='canvas' width='1000' height='800' style="float:left;">
IE is not supported at this time.
</canvas>
<div id="selectedWidget" style='float:left;'>
</div>
</div>
</body>
</html>