-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
75 lines (64 loc) · 2.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Etrian Odyssey IV Skill Simulator</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<link rel="stylesheet" type="text/css" href="themes/default/style.css" id="theme" />
<link rel="stylesheet" type="text/css" href="fancybox/jquery.fancybox-1.3.1.css" media="screen" />
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="themes/default/style-ie.css" id="theme-ie" />
<![endif]-->
<script type="text/javascript" src="js/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="fancybox/jquery.fancybox-1.3.1.js"></script>
<script type="text/javascript" src="js/zeroclipboard.js"></script>
<script type="text/javascript" src="js/skillsimulator.js"></script>
<script type="text/javascript" src="js/skills.js"></script>
<script type="text/javascript" src="js/levels.js"></script>
<script type="text/javascript" src="js/forward.js"></script>
<script type="text/javascript">
$(document).ready(function() {
var defaultClass = location.search.substring(1, location.search.length);
if (defaultClass.length != 0) SkillSimulator.primaryClass = defaultClass;
//SkillSimulator.url = "http://www.ualberta.ca/~fqureshi/EO3/SkillSim/";
SkillSimulator.init();
});
</script>
</head>
<body>
<div id="header">
<form id="controls" action="">
<select id="class-selector-primary"><option value="None">None</option></select>
<select id="class-selector-secondary"><option value="None">None</option></select>
<div id="available-label"></div>
<input type="text" class="form-textbox" id="points-total"/>
<input type="text" class="form-textbox" id="points-available"/>
<input type="text" class="form-textbox" id="level"/>
<select id="level-cap"><option value="1">1</option></select>
<input type="text" class="form-textbox" id="retire-level"/>
<input type="checkbox" id="retired"/>
<!--
<select id="theme-selector">
<option value="default">Default</option>
<option value="reverse">Reverse (testing)</option>
<option value="none">None (testing)</option>
</select>
-->
</form>
<a class="button jp" id="language-button" title="Switch to Japanese"></a>
<a class="button" id="export-button" href="#export" title="Export to Text"></a>
<a class="button" id="help-button" href="help.html" title="Help"></a>
<a class="button" id="clear-button" title="Clear All Settings"></a>
</div>
<div id="main">
<div class="tree" id="tree-fixed"></div>
<div class="tree" id="tree-primary"></div>
<div class="tree" id="tree-secondary"></div>
</div>
<div class="skill-info-layer" id="skill-info-layer-fixed"></div>
<div class="skill-info-layer" id="skill-info-layer-primary"></div>
<div class="skill-info-layer" id="skill-info-layer-secondary"></div>
<div style="display:none"><div id="export"></div></div>
<div style="display:none"><div id="help"></div></div>
</body>
</html>