-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
54 lines (53 loc) · 1.94 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<html>
<head>
<title>Initial Letter</title>
<style type="text/css">
@import "http://ajax.googleapis.com/ajax/libs/dojo/1.5/dojo/resources/dojo.css";
@import "http://ajax.googleapis.com/ajax/libs/dojo/1.5/dijit/themes/claro/claro.css";
@import "css/braille.css";
html, body {width: 100%; height: 100%; overflow: hidden; }
#pic { width: 66%; height: 100%; display: inline-block; }
#dotdiv { width: 33%; height: 100%; display: inline-block; }
</style>
<script type="text/javascript">
var djConfig = {
isDebug: false,
parseOnLoad: true,
baseUrl: './',
modulePaths: { }
};
</script>
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/dojo/1.5/dojo/dojo.xd.js">
</script>
<script type="text/javascript" src="/libs/uow.js"></script>
<script src="http://cdn.socket.io/stable/socket.io.js"></script>
<script>WEB_SOCKET_SWF_LOCATION = 'http://cdn.socket.io/stable/WebSocketMain.swf';</script>
<script type="text/javascript" src="BraillePad.js"></script>
<script type="text/javascript" src="BrailleKB.js"></script>
<script type="text/javascript" src="AnimalRescue/AnimalRescue.js"></script>
<script type="text/javascript" src="initialLetter.js">
</script>
</head>
<body>
<div id="pic"></div>
<div id="dotdiv">
<table id="dots">
<tbody>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
</body>
</html>