Fix scrolling to sections if a tab's hash coincides with one

ben10/wiki/Alien_X_(Classic)#Appearances
This commit is contained in:
blankie 2023-11-13 14:35:07 +11:00
parent dcb8a8a590
commit 2b3a8fe108
Signed by: blankie
GPG Key ID: CC15FC822C7F61F5
1 changed files with 4 additions and 1 deletions

View File

@ -66,6 +66,9 @@ function setCurrentTab(tabber, tab, content) {
tab.classList.add("wds-is-current");
content.classList.add("wds-is-current");
if (tab.dataset.hash) {
location.hash = "#" + tab.dataset.hash;
let fragment = "#" + tab.dataset.hash;
if (location.hash !== fragment) {
history.pushState(null, "", fragment);
}
}
}