Add better support for tabs #15

Manually merged
cadence merged 5 commits from blankie/breezewiki:tabs into main 2024-06-05 11:09:06 +00:00
Showing only changes of commit 2b3a8fe108 - Show all commits

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

ben10/wiki/Alien_X_(Classic)#Appearances
blankie 2023-11-13 14:35:07 +11:00
Signed by untrusted user: blankie
GPG key ID: CC15FC822C7F61F5

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);
}
}
}