Created
January 2, 2015 01:57
-
-
Save TheIronDev/86178c696785eb8c6b57 to your computer and use it in GitHub Desktop.
Does this guy load too much?
This file contains hidden or 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.IndexRoute = Ember.Route.extend({ | |
model: function() { | |
var store = this.store; | |
return Ember.RSVP.hash({ | |
pokeballs: App.Pokeball.all(), | |
pokemon: store.find('pokemon'), | |
status: App.Status.all(), | |
levels: App.Levels | |
}); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment