Merge pull request #3286 from hashicorp/b-ui-scroll-to-top-on-transition

Scroll to the top of the page on transition. Like a normal website.
This commit is contained in:
Michael Lange 2017-09-29 09:27:55 -07:00 committed by GitHub
commit a59d85f266
1 changed files with 7 additions and 1 deletions

View File

@ -2,4 +2,10 @@ import Ember from 'ember';
const { Route } = Ember;
export default Route.extend({});
export default Route.extend({
actions: {
didTransition() {
window.scrollTo(0, 0);
},
},
});