diff --git a/static/tabs.js b/static/tabs.js index a077efe..4c4cdda 100644 --- a/static/tabs.js +++ b/static/tabs.js @@ -66,9 +66,6 @@ function setCurrentTab(tabber, tab, content) { tab.classList.add("wds-is-current"); content.classList.add("wds-is-current"); if (tab.dataset.hash) { - let fragment = "#" + tab.dataset.hash; - if (location.hash !== fragment) { - history.pushState(null, "", fragment); - } + location.hash = "#" + tab.dataset.hash; } }