diaspora/public/javascripts/models/post.js
2012-01-07 14:23:21 -08:00

11 lines
262 B
JavaScript

App.Models.Post = Backbone.Model.extend({
url: "/posts",
initialize: function() {
this.comments = new App.Collections.Comments(this.get("last_three_comments"));
},
createdAt: function(){
return +new Date(this.get("created_at")) / 1000;
}
});