-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·59 lines (59 loc) · 2.63 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
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>The Last Crusade</title>
<style type="text/css">
@import "http://ajax.googleapis.com/ajax/libs/dojo/1.5.0/dojo/resources/dojo.css";
@import "http://ajax.googleapis.com/ajax/libs/dojo/1.5.0/dijit/themes/tundra/tundra.css";
</style>
<script type="text/javascript">
var djConfig = {
isDebug: false,
parseOnLoad: true,
baseUrl: './',
modulePaths: {'widgets' : 'widgets'}
};
</script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/dojo/1.5.0/dojo/dojo.xd.js"></script>
<script type="text/javascript" src="/libs/uow/trace.js"></script>
<script type="text/javascript" src="/libs/uow.js"></script>
<script type="text/javascript" src="main.js"></script>
<script type="text/javascript">
dojo.require('dijit.Dialog');
dojo.require('dijit.layout.BorderContainer');
dojo.require('dijit.layout.ContentPane');
</script>
<link rel="stylesheet" type="text/css" href="css/main.css"/>
</head>
<body class="tundra">
<div id = "mainContents" liveSplitters="true">
<div dojoType="dijit.layout.ContentPane" region="top" id ="header" splitter="false">
</div>
<div dojoType="dijit.layout.ContentPane" id="game" region="center" splitter="true">
<div>The Last Crusade</div>
</div>
<div dojoType="dijit.layout.ContentPane"region="bottom" splitter="true">
<div id="directions"></div>
<!---------------REMOVE AFTER MOVING TO HARK SITE---------->
<p style="text-align:left;">Sliders are temp until hooked into hark, just for testing</p>
<p style="text-align:left;">Master</p>
<div id="master"></div>
<p style="text-align:left;">Speech Rate</p>
<div id="speechRate"></div>
<p style="text-align:left;">Speech Volume</p>
<div id="speechVol"></div>
<p style="text-align:left;">Sound Volume</p>
<div id="soundVol"></div>
<p style="text-align:left;">Music Volume</p>
<div id="music"></div>
<!---------------------------------------------------------->
</div>
</div>
<!--<div id="loadingDialog" style="display: none" dojoType="dijit.Dialog" title="Loading">
<div dojoType="dijit.layout.ContentPane" title="foo" style = "width: 500px; height: 100px; overflow: auto; padding-left: 25px; padding-right: 25px; text-align: center;">
<h1>The Last Crusade is loading</h1>
</div>
</div>-->
</body>
</html>