Skip to content

Instantly share code, notes, and snippets.

@frankV
Created July 3, 2013 16:14
Show Gist options
  • Save frankV/5919943 to your computer and use it in GitHub Desktop.
Save frankV/5919943 to your computer and use it in GitHub Desktop.
// create an Ember App instance
App = Ember.Application.create();
App.Router.map(function() {
// put your routes here
});
// return an elemtary model as a list
App.IndexRoute = Ember.Route.extend({
model: function() {
return ['red', 'yellow', 'blue'];
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment