mirror of
https://github.com/jsbin/jsbin.git
synced 2026-01-25 15:38:56 +00:00
11 lines
199 B
JavaScript
11 lines
199 B
JavaScript
App = Ember.Application.create();
|
|
|
|
App.Router.map(function() {
|
|
// put your routes here
|
|
});
|
|
|
|
App.IndexRoute = Ember.Route.extend({
|
|
model: function() {
|
|
return ['red', 'yellow', 'blue'];
|
|
}
|
|
}); |