mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-20 05:02:37 +08:00
10 lines
210 B
JavaScript
10 lines
210 B
JavaScript
const { document } = require('global');
|
|
|
|
exports.onRouteUpdate = location => {
|
|
if (location.hash) {
|
|
setTimeout(() => {
|
|
document.querySelector(`${location.hash}`).scrollIntoView();
|
|
}, 0);
|
|
}
|
|
};
|