Skip to content

Instantly share code, notes, and snippets.

@fellix
Created July 19, 2011 13:18
Show Gist options
  • Save fellix/1092283 to your computer and use it in GitHub Desktop.
Save fellix/1092283 to your computer and use it in GitHub Desktop.
backbone sample
window.AlbumsCollection = Backbone.Collection.extend({
model: Album,
initialize: function(collection_id){
this.url = '/collection/'+collection_id+"/albums";
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment