const sidebarPageNav = document.querySelector('.sidebar-page-nav');
if (sidebarPageNav) {
DOM.onChildEvent(sidebarPageNav, 'a', 'click', (event, child) => {
+ event.preventDefault();
window.components['tri-layout'][0].showContent();
- this.goToText(child.getAttribute('href').substr(1));
+ const contentId = child.getAttribute('href').substr(1);
+ this.goToText(contentId);
+ window.history.pushState(null, null, '#' + contentId);
});
}
}