-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
63 lines (50 loc) · 1.54 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<title>WoW Talent Needs jQuery Plugin</title>
<!-- Required jQuery -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
<!-- Demo files (optional) -->
<link rel="stylesheet" href="demo/demo.css">
<!-- Jatt is the tooltip plugin, it is optional but if you use another tooltip, make sure it can use meta data to style the tooltip -->
<script src="demo/jquery.jatt.min.js"></script>
<!-- WoWTalents plugin - required -->
<link rel="stylesheet" href="css/wowtalents.css">
<script src="js/wowtalents.js"></script>
<script>
$(function(){
// WoWTalentNeeds initialization
$('#recruit1').wowTalents({
colorBackground: false,
useClassColors: true,
defaultNeed: 'n',
druid : ',-,x,h', // empty parameters or characters that don't match anything will be set to the default need
mage : 'l,m,h',
rogue : 'h,l,m',
warrior : 'l'
});
$('#recruit2').wowTalents({
colorBackground: true,
useClassColors: true,
defaultNeed: 'l',
deathknight: ',h,',
druid : 'm,l,n,h', // balance, guardian, feral, restoration
rogue : 'm,l,m',
warrior : ',n,m'
});
// Just another tooltip settings (http://github.com/Mottie/Jatt)
$.jatt({
direction : 's'
});
});
</script>
</head>
<body>
<h2><a href="https://github.com/Unrepentant/wowTalentNeeds">World of Warcraft Talent Needs</a></h2>
<div class="recruitTitle">Needs - M,W,F</div>
<div id="recruit1"></div>
<br><br>
<div class="recruitTitle">Needs - T,Th,Sat</div>
<div id="recruit2"></div>
</body>
</html>