@eluvio/elv-docdash
Version:
A customized version of the Docdash JSDoc theme (https://github.com/clenemt/docdash)
12 lines (10 loc) • 352 B
JavaScript
function scrollToNavItem() {
var path = window.location.href.split('/').pop().replace(/\.html/, '');
document.querySelectorAll('nav a').forEach(function(link) {
var href = link.attributes.href.value.replace(/\.html/, '');
if (path === href) {
link.scrollIntoView({block: 'center'});
}
})
}
scrollToNavItem();