fixed hash parameter

This commit is contained in:
Riley L. 2024-08-24 02:20:11 +02:00
parent c1b8edf525
commit aad37dd523

View file

@ -89,7 +89,7 @@
<script> <script>
document.onreadystatechange = _ => { document.onreadystatechange = _ => {
if(document.readyState === "complete") { if(document.readyState === "complete") {
document.getElementById("thing").innerHTML = window.location.hash ? window.location.hash : "no hash specified" document.getElementById("thing").innerHTML = window.location.hash ? decodeURI(window.location.hash.substr(1)) : "no hash specified"
} }
}; };
</script> </script>