-
Notifications
You must be signed in to change notification settings - Fork 0
/
epgp-standings.htm
47 lines (39 loc) · 2.1 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<title>EPGP Standings</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/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/jquery.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 : 'Wolfpax', // 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
addSliders : true, // Add slider to adjust the changes in ep/gp (green & red values) or the loot history popup
maxHistory : 30, // Slider max number of days.
baseGP : '1', // Base GP
minEP : '0', // Minimum EP
decay : '15', // Decay
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).
}, {
wowhead : 'de'
});
/* tooltip script - http://github.com/Mottie/Jatt */
$.jatt({
direction: 's',
live: true
});
});
</script>
</head><body>
<div id="epgp"></div>
</body></html>