This repository has been archived by the owner on Sep 30, 2024. It is now read-only.
forked from ythri/tcresearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (43 loc) · 2.02 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Thaumcraft 4.x Research Helper</title>
<script type="text/javascript" src="buckets-minified.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>
<script type="text/javascript" src="select2.min.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
<link rel="stylesheet" href="select2.css">
<script type="text/javascript" src="translation_dictionary.js"></script>
<script type="text/javascript" src="version_dictionary.js"></script>
<script type="text/javascript" src="addon_dictionary.js"></script>
<script type="text/javascript" src="tcresearch.js"></script>
<link rel="stylesheet" href="tcresearch.css">
<style type="text/css">
.select2-container .select2-choice {
height: 44px;
}
</style>
</head>
<body>
<h2>Thaumcraft <select id="version"></select> Research Helper</h2>
<div id="combination_box"><div id="left"></div><span class="operator">+</span><div id="right"></div><span class="operator">=</span><div id="equals"></div></div>
<table>
<tr>
<td width="280px" rowspan="4"><ul class="fast" id="fastFrom"></ul></td>
<td><input type=hidden id="fromSel"></input> - <input type=hidden id="toSel"></input> | <input id="close_results" type="button" value="Close all results" /></td>
<td width="280px" rowspan="4"><ul class="fast" id="fastTo"></ul></td>
</tr>
<tr>
<td colspan="1"><input id="spinner" name="value" value="1" style="width:140px" /> | <input id="find_connection" type="button" value="Find Connection" /></td>
</tr>
<tr>
<td align="center" width="1000px"><ul id="avail" class="aspectlist"></ul></td>
</tr>
<tr>
<td id="addons"> | <input type="button" id="sel_all" value="Select All Aspects"><input type="button" id="desel_all" value="Deselect All Aspects"></td>
</tr>
</table>
</body>
</html>