storybook/docs/gatsby-browser.js
Norbert de Langen d1aa2ed9ce FIX docs
2017-06-06 18:03:32 +02:00

12 lines
239 B
JavaScript

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