1
0
mirror of https://github.com/storybookjs/storybook.git synced 2025-04-05 05:11:07 +08:00
storybook/docs/gatsby-browser.js

10 lines
210 B
JavaScript

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