mirror of
https://github.com/Theodor-Springmann-Stiftung/musenalm.git
synced 2025-10-29 17:25:32 +00:00
11 lines
246 B
Plaintext
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>
|