Vulcan/client/views/comments/comment_reply.js
2015-04-13 16:29:33 +09:00

8 lines
170 B
JavaScript

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