Compare commits

..

2 commits

Author SHA1 Message Date
0e2b5ea452
Hide slideshows 2023-11-13 14:36:20 +11:00
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

View file

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