Vulcan/packages/telescope-comments/lib/client/templates/comment_reply.js
2015-10-26 15:14:31 +09:00

8 lines
163 B
JavaScript

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