Files
musenalm/views/layouts/components/_scripts.gohtml
2025-05-29 14:15:02 +02:00

11 lines
246 B
Plaintext

<script type="module">
const hash = window.location.hash;
if (hash) {
const stripped = hash.slice(1);
const element = document.getElementById(stripped);
if (element) {
element.setAttribute("aria-current", "location");
}
}
</script>