Vulcan/client/views/comments/comment_reply.js

6 lines
137 B
JavaScript
Raw Normal View History

Template.comment_reply.helpers({
post: function () {
2014-05-08 15:35:47 +09:00
if(this.comment) // XXX
return Posts.findOne(this.comment.post);
}
});