12 lines
228 B
JavaScript
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();
|
|
}
|
|
});
|