mirror of
https://github.com/two-torial/webpatcher.git
synced 2024-11-14 19:07:37 +01:00
Make categories act like radio buttons
This commit is contained in:
parent
aca4aa981c
commit
0350d16b43
12
index.html
12
index.html
@ -4,6 +4,18 @@
|
||||
<meta charset="utf-8">
|
||||
<title>BEMANI DLL Patching Tools</title>
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<script>
|
||||
window.addEventListener('DOMContentLoaded', function() {
|
||||
// implement radio-style behaviour for categories
|
||||
for(const input of document.querySelectorAll(".sectionToggle")) {
|
||||
input.onclick = () => {
|
||||
for(const el of document.querySelectorAll(".sectionToggle")) {
|
||||
if(el != input) el.checked = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Pick a game!</h1>
|
||||
|
Loading…
Reference in New Issue
Block a user