Add better support for tabs #15

Open
blankie wants to merge 5 commits from blankie/breezewiki:tabs into main
1 changed files with 4 additions and 3 deletions
Showing only changes of commit f5399524b1 - Show all commits

View File

@ -14,7 +14,6 @@ for (let tabber of document.body.querySelectorAll(".wds-tabber")) {
});
if (tab.dataset.hash === tabToFind) {
setCurrentTab(tabber, tab, content);
tabToFind = null;
}
}
}
@ -66,6 +65,8 @@ function setCurrentTab(tabber, tab, content) {
tab.classList.add("wds-is-current");
content.classList.add("wds-is-current");
location.hash = "#" + tab.dataset.hash;
history.pushState(null, "", "#" + tab.dataset.hash);
if (tab.dataset.hash) {
location.hash = "#" + tab.dataset.hash;
history.pushState(null, "", "#" + tab.dataset.hash);
}
}