-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgame.html
42 lines (42 loc) · 1.88 KB
/
game.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Comp 523 Game</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/claro/claro.css";
@import "css/application.css";
</style>
<noscript>
<p>Sorry, your browser does not support JavaScript.</p>
</noscript>
<script type="text/javascript">
var djConfig = {
isDebug: false,
parseOnLoad: true,
baseUrl: './',
modulePaths: {'myapp' : 'widgets'}
};
if(!(navigator.userAgent.indexOf("Firefox")>=0 ||navigator.userAgent.indexOf("Chrome")>=0)){
//document.write("I see you aren't using Firefox or Google Chrome... tsk. To play this game you will need one of them. <br /><br /> Chrome: <a href = 'http://www.google.com/chrome/intl/en/landing_chrome.html?hl=en'>here</a> <br /><br /> or <br /><br /> Firefox: <a href='http://www.mozilla.com/en-US/firefox/firefox.html'>here</a>");
}
</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="application.js"></script>
</head>
<body class="claro">
<div dojoType="dijit.layout.BorderContainer" liveSplitters="true">
<div dojoType="dijit.layout.ContentPane" region="top" splitter="false">
<h1>Return to Castle Dookenstein</h1>
</div>
<div dojoType="dijit.layout.TabContainer" id="tabs" region="center" splitter="true">
<div dojoType="dijit.layout.ContentPane" title="Dookenstein">
<div dojoType="myapp.Dookenstein"></div>
</div>
</div>
</div>
</body>
</html>