Created
August 18, 2014 16:29
-
-
Save alexspeller/2ad65a3616d9a3d1bcf7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
App.FilteredRoute = Em.Route.extend | |
page: 1 | |
query: null | |
model: -> | |
@store.find('something', page: @page, query: @query) | |
actions: | |
nextPage: -> | |
@page += 1 | |
@refresh() | |
previousPage: -> | |
@page -= 1 | |
@refresh() | |
query: (string) -> | |
@query = string | |
@refresh() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment