ember-cli-reset-scroll
v0.0.1
Published
The default blueprint for ember-cli addons.
Downloads
10
Readme
ember-cli-reset-scroll
Resets the browser window scroll position when a route transitions:
import Ember from 'ember';
import ResetScrollMixin from 'ember-cli-reset-scroll';
export default Ember.Route.extend(ResetScrollMixin, {
// Scrolls to top
resetScroll: undefined
// Scroll to a specific position (in px)
resetScroll: 20
// Scroll to a specific position based on the route name (in px)
resetScroll: {
'books.index': 30,
'authors.*': 210
}
});
Installation
git clone
this repositorynpm install
bower install
Running
ember server
- Visit your app at http://localhost:4200.
Running Tests
ember test
ember test --server
Building
ember build
For more information on using ember-cli, visit http://www.ember-cli.com/.