27 lines
543 B
JavaScript
27 lines
543 B
JavaScript
app.views.Comment = app.views.Content.extend({
|
|
|
|
templateName: "comment",
|
|
|
|
tagName : "li",
|
|
|
|
className : "comment",
|
|
|
|
events : {
|
|
"click .comment_delete": "destroyModel"
|
|
},
|
|
|
|
initialize : function() {
|
|
$(this.el).attr("id", this.model.get("guid"));
|
|
|
|
return this;
|
|
},
|
|
|
|
presenter : function() {
|
|
return _.extend(this.defaultPresenter(), {ownComment: this.ownComment()})
|
|
},
|
|
|
|
ownComment: function() {
|
|
if(!app.user()){ return false }
|
|
return this.model.get("author").diaspora_id == app.user().diaspora_id
|
|
}
|
|
});
|