forked from klayveR/python-poe-timeless-jewel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviewer_compact.html
60 lines (54 loc) · 2.12 KB
/
viewer_compact.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Timeless Jewel Viewer</title>
<meta name="author" content="klayveR">
<link rel="shortcut icon" href="images/favicon.png">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/custom.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="container" style="margin-top: 10px">
<div class="row">
<div class="three columns" id="selector">
<input type="file" id="jsonFiles" name="files[]" multiple style="display:none" />
<a class="button button-primary" href="javascript:;" id="jsonSelect">Select all JSON result files</a>
<div class="jewel-info">
<span class="name"></span>
<span class="info"></span>
</div>
<canvas id="canvas" style="display:none"></canvas>
<table class="u-full-width">
<thead>
<tr>
<th>Type</th>
<th>Seed</th>
<th>Variant</th>
<th>Socket</th>
</tr>
</thead>
<tbody id="jewelsTable">
</tbody>
</table><br />
</div>
<div class="nine columns">
<table class="u-full-width">
<thead>
<tr>
<th colspan="2">Aggregated passives</th>
</tr>
</thead>
<tbody id="jewelNodes">
</tbody>
</table>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="js/viewer_compact.js"></script>
</body>
</html>