forked from quisquous/cactbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jobs.html
44 lines (42 loc) · 1.51 KB
/
jobs.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
<html>
<head>
<meta charset="utf-8" />
<title></title>
<link rel="stylesheet" href="../../resources/defaults.css">
<link rel="stylesheet" href="../../resources/resize_handle.css">
<script src="../../resources/common.js"></script>
<script src="../../resources/regexes.js"></script>
<script src="../../resources/resize_handle.js"></script>
<script src="../../resources/resourcebar.js"></script>
<script src="../../resources/timerbar.js"></script>
<script src="../../resources/timerbox.js"></script>
<script src="../../resources/timericon.js"></script>
<script src="../../resources/widgetlist.js"></script>
<script src="../../resources/user_config.js"></script>
<script src="../../resources/lang.js"></script>
<script src="../../resources/lang/en.js"></script>
<script src="../../resources/lang/de.js"></script>
<script src="../../resources/lang/fr.js"></script>
<script src="../../resources/lang/ja.js"></script>
<script src="../../resources/lang/ko.js"></script>
<link rel="stylesheet" href="jobs.css">
<script src="jobs-icons.js"></script>
<script src="jobs.js"></script>
</head>
<body>
<div id="container"></div>
</body>
<script>
function hide(h) {
var hideWhenInactive = false;
if (h && hideWhenInactive)
document.getElementById("container").style.display = "none";
else
document.getElementById("container").style.display = "block";
}
document.addEventListener("onGameActiveChangedEvent", function(e) {
hide(!e.detail.active);
});
hide(true);
</script>
</html>