1
0
Fork 0

fix(docsearch): use scrollTo when unmounting modal

This commit is contained in:
François Chalifour 2020-06-08 15:46:17 +02:00
parent ad3dc51914
commit 1f9deb1322

View file

@ -279,7 +279,9 @@ export function DocSearchModal({
return () => {
document.body.classList.remove('DocSearch--active');
document.body.scrollTop = scrollY.current;
// IE11 doesn't support `scrollTo` so we check that the method exists
// first.
window.scrollTo?.(0, scrollY.current);
};
}, []);