twister-react/node_modules/react-router/lib/behaviors/ScrollToTopBehavior.js
2015-04-21 19:38:17 +02:00

15 lines
270 B
JavaScript

"use strict";
/**
* A scroll behavior that always scrolls to the top of the page
* after a transition.
*/
var ScrollToTopBehavior = {
updateScrollPosition: function updateScrollPosition() {
window.scrollTo(0, 0);
}
};
module.exports = ScrollToTopBehavior;