diaspora/public/javascripts/app/collections/comments.js
2012-01-18 19:08:36 -08:00

7 lines
292 B
JavaScript

app.collections.Comments = Backbone.Collection.extend({
model: app.models.Comment,
initialize : function(models, options) {
this.url = "/posts/" + options.post.id + "/comments" //not delegating to post.url() because when it is in a stream collection it delegates to that url
}
});