forked from tanner/qotnews
Fix back/forward scroll jump issue
This commit is contained in:
@@ -3,9 +3,18 @@ import { withRouter } from 'react-router-dom';
|
||||
|
||||
class ScrollToTop extends React.Component {
|
||||
componentDidUpdate(prevProps) {
|
||||
if (this.props.location.pathname !== prevProps.location.pathname) {
|
||||
window.scrollTo(0, 0);
|
||||
//console.log(this.props.location.pathname, prevProps.location.pathname);
|
||||
|
||||
if (this.props.location.pathname === prevProps.location.pathname) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (localStorage.getItem('scrollLock') === 'True') {
|
||||
localStorage.setItem('scrollLock', 'False');
|
||||
return;
|
||||
}
|
||||
|
||||
window.scrollTo(0, 0);
|
||||
}
|
||||
|
||||
render() {
|
||||
|
Reference in New Issue
Block a user