-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 1.71 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
<html>
<header>
<link rel="stylesheet" href="style.css" type="text/css">
</header>
<body>
<div id="runeInputs">
<div id="normalCountessRunes"><input type="checkbox" checked onchange="toggleColumn(this)" />Normal Countess</div>
<div id="nightmareCountessRunes"><input type="checkbox" checked onchange="toggleColumn(this)" />Nightmare Countess</div>
<div id="hellCountessRunes"><input type="checkbox" checked onchange="toggleColumn(this)" />Hell Countess</div>
<div id="nonCountessRunes"><input type="checkbox" checked onchange="toggleColumn(this)" />High Runes</div>
</div>
<div id="runewordsWrapper">
<table>
<thead>
<th><input id="filter-name" type="text" name="name" placeholder="Name" oninput="renderRunewords()" /></th>
<th><input id="filter-level" type="number" min="0" max="99" name="level" placeholder="Level" oninput="renderRunewords()" /></th>
<th><input id="filter-item-types" type="text" name="item-types" placeholder="Item Types" oninput="renderRunewords()" /></th>
<th><input id="filter-runes" type="text" name="runes" placeholder="Runes" oninput="renderRunewords()" /></th>
<th><input id="filter-effects" type="text" name="effects" placeholder="Effects" oninput="renderRunewords()" /></th>
</thead>
<tbody id="runewords"></tbody>
</table>
</div>
<script type="text/javascript" src="runes.js"></script>
<script type="text/javascript" src="runewords.js"></script>
<script type="text/javascript" src="display.js"></script>
</body>
</html>