forked from cadence/breezewiki
Prevent linking to tabs with no IDs
This commit is contained in:
parent
458cce1c5c
commit
9ff6d3b9a8
1 changed files with 4 additions and 3 deletions
|
@ -14,7 +14,6 @@ for (let tabber of document.body.querySelectorAll(".wds-tabber")) {
|
||||||
});
|
});
|
||||||
if (tab.dataset.hash === tabToFind) {
|
if (tab.dataset.hash === tabToFind) {
|
||||||
setCurrentTab(tabber, tab, content);
|
setCurrentTab(tabber, tab, content);
|
||||||
tabToFind = null;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -66,6 +65,8 @@ 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");
|
||||||
location.hash = "#" + tab.dataset.hash;
|
if (tab.dataset.hash) {
|
||||||
history.pushState(null, "", "#" + tab.dataset.hash);
|
location.hash = "#" + tab.dataset.hash;
|
||||||
|
history.pushState(null, "", "#" + tab.dataset.hash);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue