diff --git a/js/app.js b/js/app.js index 8cd333b..4372f87 100755 --- a/js/app.js +++ b/js/app.js @@ -6,7 +6,19 @@ App.Router.map(function() { App.IndexRoute = Ember.Route.extend({ model: function() { - return ['red', 'yellow', 'blue']; + var questions = [ + { + title: 'How do I feed hamsters?', + author: 'Tom Dale' + }, + + { + title: 'Are humans insane?', + author: 'Tomster the Hamster' + } + ] + + return questions } });