Vulcan/packages/telescope-comments/lib/client/templates/comment_reply.js

8 lines
170 B
JavaScript

Template.comment_reply.helpers({
post: function () {
if(this.comment){ // XXX
var post = Posts.findOne(this.comment.postId);
return post;
}
}
});