forked from malulleybovo/PSO2AffixingAssistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.debug.html
119 lines (119 loc) · 5.74 KB
/
index.debug.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
110
111
112
113
114
115
116
117
118
119
<!--
/**
*
* @licstart The following is the entire license notice for the
* JavaScript code in this page.
*
* Copyright (C) 2018 Arthur Malulley B. de O.
*
*
* The JavaScript code in this page is free software: you can
* redistribute it and/or modify it under the terms of the GNU
* General Public License (GNU GPL) as published by the Free Software
* Foundation, either version 3 of the License, or (at your option)
* any later version. The code is distributed WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
*
* As additional permission under GNU GPL version 3 section 7, you
* may distribute non-source (e.g., minimized or compacted) forms of
* that code without the copy of the GNU GPL normally required by
* section 4, provided you include this license notice and a URL
* through which recipients can access the Corresponding Source.
*
* @licend The above is the entire license notice
* for the JavaScript code in this page.
*
*/
-->
<!DOCTYPE html>
<html class="theme--default">
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-127916812-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-127916812-1');
</script>
<script src="js/gaData.js"></script>
<link rel="icon" href="css/res/favicon.png" type="image/png">
<title>PSO2 Affixing Assistant</title>
<meta name="description" content="The easiest and quickest PSO2 affixing helper in the web. Make complex affixing formulas in seconds without the need of prior affixing knowledge (unlike the PSO2 affixing simulator). Customizable and also available in japanese." />
<meta charset="utf-8" />
<meta name="author" content="malulleybovo @GitHub (since 2018)" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link rel="stylesheet" href="css/themes.css">
<link rel="stylesheet" href="css/stylesheet.css">
<link rel="stylesheet" href="css/checkbox.css">
<link rel="stylesheet" href="css/radiobutton.css">
<link rel="stylesheet" href="css/dropdown.css">
<link rel="stylesheet" href="css/filtersearch.css">
<script src="js/plugins/jquery-3.3.1.js"></script>
<script src="js/plugins/jquery.connections.js"></script>
<script src="js/plugins/jquery.panzoom.js"></script>
<script src="js/lang.js"></script>
<script src="js/templates.js"></script>
<script src="js/viewcontroller.js"></script>
<script src="js/affixData.js"></script>
<script src="js/affixDataParser.js"></script>
<script src="js/affixingassistant.js"></script>
<script src="js/formulaEncoder.js"></script>
<script src="js/app.js"></script>
<script src="js/tests/util.js"></script>
<script src="js/tests/assistant.test.js"></script>
<script src="js/tests/testmanager.js"></script>
</head>
<body>
<div id="malulleybovo"></div>
<div id="ver"></div>
<div id="editor">
<div id="mastercontainer">
</div>
</div>
<div class="header" oncontextmenu="return false;">
<div>
<div>
<div id="startnew" class="option" accesskey="n" title="Check or change the affixing goal">
<i class="fa fa-plus" accesskey="n"></i>
</div>
<div id="openwishlist" class="option" accesskey="w" title="View fodders needed">
<i class="fas fa-shopping-bag"></i>
</div>
<div id="openformulasheet" class="option" accesskey="f" title="View affixing formula sheet">
<i class="fa fa-book"></i>
</div>
<div id="getlink" class="option" accesskey="s" title="Share the link to this affixing formula">
<i class="fa fa-external-link-alt"></i>
</div>
<div id="settings" class="option" title="Settings (language/theme)">
<div id="settingslist" class="hidden" tabindex="-1"
onblur="(!$('#settingslist').data('blur')) ? $('#settingslist').addClass('hidden') : null">
<div id="langswitch" class="option" accesskey="l" title="Switch languase (english / japanese)">
<i class="fas fa-language"></i>
</div>
<div id="themeswitch" class="option" accesskey="t" title="Change application theme">
<i class="fa fa-window-restore"></i>
</div>
</div>
<i class="fas fa-cog" onmousedown="$('#settingslist').data('blur', $('#settingslist').is(':focus'))"
onclick="($('#settingslist').hasClass('hidden')) ? $('#settingslist').removeClass('hidden').focus() : $('#settingslist').addClass('hidden')"></i>
</div>
<div id="reportbug" class="option" accesskey="b" title="Report a problem">
<a href="https://github.com/malulleybovo/PSO2AffixingAssistant/issues" target="_blank" style="color: inherit;">
<i class="fas fa-bug"></i>
</a>
</div>
<div id="panzoomreset" class="option" accesskey="r" title="Display affixing goal">
<i class="far fa-dot-circle"></i>
</div>
</div>
</div>
</div>
<div id="js-disabled">
<div>
<div>Loading...<br><br>Please Make Sure JavaScript is Enabled</div>
</div>
</div>
</body>
</html>