diaspora/public/javascripts/app/views/comment_view.js
2012-01-22 16:59:44 -08:00

19 lines
325 B
JavaScript

app.views.Comment = app.views.Content.extend({
legacyTemplate : true,
template_name: "#comment-template",
tagName : "li",
className : "comment",
events : {
"click .comment_delete": "destroyModel"
},
initialize : function() {
$(this.el).attr("id", this.model.get("guid"));
return this;
}
});