Compare commits

..

2 Commits

Author SHA1 Message Date
blankie 0e2b5ea452
Hide slideshows 2023-11-13 14:36:20 +11:00
blankie 2b3a8fe108
Fix scrolling to sections if a tab's hash coincides with one
ben10/wiki/Alien_X_(Classic)#Appearances
2023-11-13 14:35:35 +11:00
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);
}
}
}