-
Notifications
You must be signed in to change notification settings - Fork 0
/
epgp-standings.htm
77 lines (66 loc) · 2.41 KB
/
epgp-standings.htm
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
76
77
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<title>EPGP</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<script type="text/javascript" src="http://static.wowhead.com/widgets/power.js"></script>
<script type="text/javascript" src="js/jquery.tablesorter.min.js"></script>
<script type="text/javascript" src="js/jatt.min.js"></script>
<script type="text/javascript" src="js/epgp.js"></script>
<!-- Choose from epgp-dark.css, epgp-light.css or make your own -->
<link type="text/css" href="css/epgp-dark.css" rel="stylesheet" >
<script type="text/javascript">
jQuery(document).ready(function($){
$('#epgp').epgp({
epgpfile : 'epgp.lua', // epgp.lua file name
guild : 'Fallout', // Guild name (include captial letters and any spaces in the name)
startEpgpHistory : 7, // EPGP Standings History - initial number of days to show prior to snapshot
startLootHistory : 7, // Loot History - initial number of days to show prior to snapshot
extras : '100%', // Extras - set here because it's not in the lua
lootIcon : 'images/plus.gif', // Icon to hover over to see a list of recent loot, styled in the css
sort : [3,1] // sort table by 3rd column (PR column, 0 indexed) in descending order (1).
});
/* tooltip script */
$.jatt({
direction: 's',
live: true
});
});
</script>
</head><body>
<div id="epgp">
<div class="header">
<div class="sliders">
<div>
EPGP ( <span class="count"></span> days from snapshot )<br>
<div class="slider"></div>
</div>
<br>
<div>
Loot ( <span class="count"></span> days from snapshot )<br>
<div class="slider"></div>
</div>
</div>
Date: <span class="date"></span>
<br><br>
Decay: <span class="decay"> </span>
BaseGP: <span class="base"> </span>
MinEP: <span class="min"> </span>
Extras: <span class="extras"> </span>
<br>
</div>
<table class="epgp">
<thead>
<tr class="title">
<th class="name class">Name</th>
<th class="ep">EP</th>
<th class="gp">GP</th>
<th class="pr">PR</th>
<th class="lastitem">Last Item</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</body></html>