storybook/docs/gatsby-browser.js

8 lines
169 B
JavaScript
Raw Normal View History

exports.onRouteUpdate = location => {
if (location.hash) {
setTimeout(() => {
document.querySelector(`${location.hash}`).scrollIntoView();
}, 0);
}
};