Switch to unified view

a b/compass-app/www/js/app.js
1
App = Ember.Application.create();
2
3
App.Router.map(function() {
4
  // put your routes here
5
});
6
7
App.IndexRoute = Ember.Route.extend({
8
  model: function() {
9
    return ['red', 'yellow', 'blue'];
10
  }
11
});