mirror of
https://github.com/twisterarmy/twister-react.git
synced 2025-01-26 06:34:23 +00:00
15 lines
270 B
JavaScript
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;
|