Skip to content

Instantly share code, notes, and snippets.

app.ContactCollection = Backbone.Collection.extend({
model : Contact,
initialize : function(){
var self = this;
this.fetch({
success : function(){
self.trigger("load");
}