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

10 lines
236 B
JavaScript

var Post = Backbone.Model.extend({
url: "/posts/:id",
intTime: function(){
return +new Date(this.postAttributes().created_at);
},
postAttributes: function() {
return this.attributes[_.keys(this.attributes)[0]];
}
});