Skip to content

Instantly share code, notes, and snippets.

@eastridge
Created June 14, 2013 23:53
Show Gist options
  • Save eastridge/5786133 to your computer and use it in GitHub Desktop.
Save eastridge/5786133 to your computer and use it in GitHub Desktop.
define([
'collections/todos',
'views/todos'
], function(TodosCollection, TodosView) {
new (Backbone.Router.extend({
routes: {
'': 'index'
},
index: function() {
var collection = new TodosCollection();
var view = new TodosView({
collection: collection
});
Application.setView(view);
}
}));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment