Vulcan/packages/nova-comments/lib/client/templates/comment_reply.js
2016-02-17 14:27:27 +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;
}
}
});