Skip to content

Instantly share code, notes, and snippets.

@bittersweetryan
Created July 27, 2012 15:54
Show Gist options
  • Save bittersweetryan/3188820 to your computer and use it in GitHub Desktop.
Save bittersweetryan/3188820 to your computer and use it in GitHub Desktop.
app.ContactCollection = Backbone.Collection.extend({
model : app.Contact,
initialize : function(){
this.fetch();
},
url : 'contacts/'
});
app.contacts = new app.ContactCollection()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment