-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
109 lines (99 loc) · 5.03 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
102
103
104
105
106
107
108
109
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<link rel="icon" type="image/png" href="images/favicon-16x16.png" sizes="16x16" />
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" href="css/main-chart.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/brands.css" integrity="sha384-1KLgFVb/gHrlDGLFPgMbeedi6tQBLcWvyNUN+YKXbD7ZFbjX6BLpMDf0PJ32XJfX" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/fontawesome.css" integrity="sha384-jLuaxTTBR42U2qJ/pm4JRouHkEDHkVqH0T1nyQXn1mZ7Snycpf6Rl25VBNthU4z0" crossorigin="anonymous">
<title>Shadow Priest Charts</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-NLDG4XKB3H"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-NLDG4XKB3H');
</script>
</head>
<body style="background-color: rgb(52, 58, 64);">
<div class=header>
<a href="https://warcraftpriests.com/" target="_blank"><img id="img-banner" src="https://i.imgur.com/M12BeGV.png" alt="WCP Banner"></a>
</div>
<div id="pad" style="padding-bottom: 30px;"></div>
<script>
var whTooltips = {
colorLinks: true,
iconizeLinks: true,
renameLinks: false
};
</script>
<script src="https://wow.zamimg.com/widgets/power.js"></script>
<div id="disclaimer">
<section>
<b id="updateData"></b>
</section>
</div>
<!-- <div id="ptr-div" style="align-self: center; display: block; justify-content: center; text-align: center">
<button id="ptr" class="button" style="border-radius: 8px 8px 8px 8px" onclick="window.location.href='./ptr/index.html'">
<div style="height:100%; width: 20px;"></div>
<div style="padding-left: 8px; text-align: left; flex: 1 1 0%;">PTR sims</div>
</button>
</div> -->
<br>
<div id="talent-div" class=dropdown-content> </div>
<div id="sims-div" class=dropdown-content> </div>
<div id="enchants-div" class="dropdown-content"> </div>
<div id="consumables-div" class="dropdown-content"> </div>
<div id="blank-div" class="dropdown-content"> </div>
<div id="fightStyle-div" class=dropdown-content> </div>
<div id="empty"></div>
<div id="container"></div>
<div class="pad"><i> - All sim data is subject to a certain error percentage and should be taken with a grain of salt.</i></div>
<div class="wrapper" id="wrapper">
<div id="header"></div>
<div id="description" class="descriptionContent"></div>
<div style="display: block; padding: 5px"></div>
<div id="talent-build-div" class="talentBuild">
<span>Show Talent Build</span>
</div>
<div id="talent-build-content-div" class="talentBuildContent">
<div id="talent-build-id-div" class="talentBuildId">
<span><a class="tooltipLink" href="%talentId%" onclick="copyURI(event)" title="Click here to copy Talent Import string">Talent Import String: %talentId%</a></span>
</div>
<div><iframe src="https://www.raidbots.com/simbot/render/talents/%talentId%?level=70&width=208&mini=1" width="208" height="125"></iframe></div>
</div>
<div id="Chart-Display-div" class="chartContent"></div>
</div>
<div class="footer">
<a href="https://warcraftpriests.com/"><img class="wcp" src="images/wcplogo.svg" alt="WarcraftPriests website"></a>
<a href="https://www.youtube.com/WarcraftPriests/" class="fab fa-youtube"></a>
<a href="https://www.facebook.com/WarcraftPriests/" class="fab fa-facebook"></a>
<a href="https://www.twitch.tv/WarcraftPriests" class="fab fa-twitch"></a>
<a href="https://www.twitter.com/WarcraftPriests" class="fab fa-twitter"></a>
<a href="https://www.patreon.com/warcraftpriests" class="fab fa-patreon"></a>
<a href="https://github.com/WarcraftPriests" class="fab fa-github"></a>
<a href="https://www.discord.gg/warcraftpriests" class="fab fa-discord"></a>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://code.highcharts.com/8.2.2/highcharts.js"></script>
<script src="https://code.highcharts.com/8.2.2/highcharts-3d.js"></script>
<script src="js/yaml/yaml.min.js"></script>
<script src="js/internal/helper/TalentBuild.js"></script>
<script src="js/internal/helper/Constants.js"></script>
<script src="js/internal/helper/Converter.js"></script>
<script src="js/internal/button/Buttons.js"></script>
<script src="js/internal/csv/Csv.js"></script>
<script src="js/internal/chart/Chart.js"></script>
<script src="js/internal/chart/helper/DataHelper.js"></script>
<script src="js/internal/chart/helper/WowheadHelper.js"></script>
<script src="js/internal/chart/helper/ColorHelper.js"></script>
<script src="js/internal/chart/definitions/Definitions.js"></script>
<script src="js/internal/helper/Parameterized.js"></script>
<script src="js/Main.js"></script>
</body>
</html>