-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathf.html
More file actions
43 lines (43 loc) · 965 Bytes
/
f.html
File metadata and controls
43 lines (43 loc) · 965 Bytes
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
<html>
<head>
<script src="adv.civ.tech.js"></script>
<script type="text/javascript" src="sort.js"></script>
<script type="text/javascript">
</script>
</head>
<body>
<table>
<thead>
<th>Green</th>
<th>Blue</th>
<th>Yellow</th>
<th>Red</th>
<th>Orange</th>
</thead>
<tbody>
<td id="green">0</td>
<td id="blue">0</td>
<td id="yellow">0</td>
<td id="red">0</td>
<td id="orange">0</td>
</tbody>
</table>
<table id="techs">
<thead>
<th onclick="sort.sort(0)">Buy</th>
<th onclick="sort.sort(1, sort.numericComparator)">Curr Price</th>
<th onclick="sort.sort(2, sort.numericComparator)">Price</th>
<th onclick="sort.sort(3)">Name</th>
<th onclick="sort.sort(4)">Colors</th>
<th onclick="sort.sort(5)">Bonuses</th>
<th onclick="sort.sort(6)">spec Bonus</th>
</thead>
<tbody id="techlist">
<tr><td>hej</td></tr>
</tbody>
</body>
<script>
Civ.print()
var sort = new Sort();
sort.table = document.getElementById('techs')
</script>