15 lines
270 B
JavaScript
Raw Normal View History

2015-04-21 19:38:17 +02:00
"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;