diaspora/public/javascripts/app/views/comment_view.js
2012-01-07 14:23:25 -08:00

12 lines
228 B
JavaScript

App.Views.Comment = App.Views.StreamObject.extend({
template_name: "#comment-template",
events : {
"click .comment_delete": "destroyModel"
},
postRenderTemplate : function(){
this.$("time").timeago();
}
});