-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (83 loc) · 2.58 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>SWTOR Recruit by Talent (swtorTalents)</title>
<!-- jQuery (required) v1.2.6+ -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2/jquery.min.js"></script>
<!-- demo files (optional) -->
<link rel="stylesheet" href="demo/demo.css">
<!-- replace tooltip script below, as desired; but the plugin needs to support metadata styling of the tooltip -->
<script src="js/jquery.jatt.min.js"></script>
<!-- plugin (required) -->
<link href="css/swtortalents.css" rel="stylesheet">
<script src="js/swtortalents.js"></script>
<script>
$(function(){
$('.empire').swtorTalents({
side : 'empire',
colorBackground : true,
addHeader : true,
defaultNeed : 'm', // Default need that is set when no setting is found
juggernaut : "l,x",
marauder : "n,n",
assassin : "h,x",
sorceror : "h,h",
powertech : "",
mercenary : "",
operative : "",
sniper : "h,h",
displayNames : {
'None' : 'None',
'Low' : 'Low',
'Medium' : 'Medium',
'High' : 'High'
}
});
$('.republic').swtorTalents({
side : 'republic',
colorBackground : false,
addHeader : true,
defaultNeed : 'm', // Default need that is set when no setting is found
guardian : "l,x",
sentinel : "h,n",
sage : "l,l",
shadow : "h,h",
scoundrel : "",
gunslinger : "",
commando : "l,l",
vanguard : "",
displayNames : {
'None' : 'None',
'Low' : 'Low',
'Medium' : 'Medium',
'High' : 'High'
}
});
// initialize tooltip script
$.jatt();
});
</script>
</head><body>
<div class="wrap">
<header>
<h1><a href="https://github.com/Unrepentant/swtorTalents">SWTOR Recruit by Talents</a></h1>
</header>
<div class="panels">
<div class="box">
<h2> The Republic Needs You!</h2>
<div class="republic recruitTalent"></div>
</div>
<div class="box">
<h2>One word:<br>Cookies!</h2>
<div class="empire recruitTalent"></div>
</div>
</div>
<div class="push"><!--Sticky Footer Push--></div>
</div>
<footer>
<p>
This plugin and demo page are not endorsed by or affiliated with LucasArts, BioWare, or Electronic Arts. The names, logos and images of STAR WARS and related properties are trademarks in the United States and/or in other countries of Lucasfilm Ltd. and/or its affiliates. © 2008-2011 Lucasfilm Entertainment Company Ltd. or Lucasfilm Ltd. All Rights Reserved.
</p>
</footer>
</body></html>