mirror of
https://git.sr.ht/~ashkeel/strimertul-website
synced 2024-10-31 21:33:09 +00:00
5 lines
144 B
JavaScript
5 lines
144 B
JavaScript
|
const apiselect = document.getElementById("api-version");
|
||
|
apiselect.addEventListener("change", (ev) => {
|
||
|
location.href = ev.target.value;
|
||
|
});
|