Skip to content

Instantly share code, notes, and snippets.

@chandruxp
Created October 22, 2012 19:13
Show Gist options
  • Save chandruxp/3933462 to your computer and use it in GitHub Desktop.
Save chandruxp/3933462 to your computer and use it in GitHub Desktop.
Backbone: Collection Boilerplate
define(['lodash','backbone','ProjectModel'],
function(_, Backbone, ProjectModel){
var collection = Backbone.Collection.extend({
url : "/projects",
model : ProjectModel
});
return new collection;
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment