Make categories act like radio buttons

This commit is contained in:
Will Toohey 2022-07-21 17:14:36 +10:00
parent aca4aa981c
commit 0350d16b43

View File

@ -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>