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

9 lines
170 B
JavaScript
Raw Normal View History

Template.comment_reply.helpers({
post: function () {
2014-07-05 16:21:28 +09:00
if(this.comment){ // XXX
var post = Posts.findOne(this.comment.postId);
return post;
}
}
2015-04-13 16:29:33 +09:00
});