-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (34 loc) · 902 Bytes
/
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<link rel="stylesheet" href="css/sk-dark.css" type="text/css" />
<script type="text/javascript" src="js/suicideKings.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
var fix = [];
fix['Æpic'] = 'mage';
fix['Skeetles'] = 'druid';
$('#sKings').suicideKings({
skFile : "SuicideKings.lua",
ranksToShow : 60,
fixClass : fix
});
});
</script>
</head><body>
<div id="sKings">
<table class="list">
<thead>
<tr class="title">
<th class="rank">Rank</th>
<th>Weapon/Trinket</th>
<th>Accessories</th>
<th>Armor</th>
<th>Tier</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</body></html>