-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
55 lines (55 loc) · 2.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>hts Temp FrameWork</title>
<style type="text/css">
@import "http://ajax.googleapis.com/ajax/libs/dojo/1.4.1/dojo/resources/dojo.css";
@import "http://ajax.googleapis.com/ajax/libs/dojo/1.4.1/dijit/themes/tundra/tundra.css";
@import "css/harkFrameWork.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="htsFrameWork.js"></script>
<script type="text/javascript">
//all these are used in the options dialog
dojo.require('dijit.Dialog');
dojo.require('dijit.layout.BorderContainer');
dojo.require('dijit.layout.ContentPane');
</script>
</head>
<body class="tundra">
<div dojoType="dijit.layout.BorderContainer" id = "mainContents" liveSplitters="true">
<div dojoType="dijit.layout.ContentPane" region="top" id ="header" splitter="false">
<table width="100%">
<tr>
<td><h1><div id ="instructions">Welcome</div></h1></td>
</tr>
</table>
</div>
<div dojoType="dijit.layout.ContentPane" id="game" region="center" splitter="true">
<div dojoType="dijit.layout.ContentPane" id="actionPane" region="bottom" title="Hark the Sound Game">
<div id="gameGoesHere"></div>
<br/>
<hr/>
<br/>
<a href="editor/editorIndex.html">Editor Index</a>
</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>Hark The Sound Is Loading</h1>
</div>
</div>
</body>
</html>