mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
12 lines
No EOL
297 B
JavaScript
12 lines
No EOL
297 B
JavaScript
Template[getTemplate('comment_reply')].helpers({
|
|
post_item: function () {
|
|
return getTemplate('post_item');
|
|
},
|
|
comment_item: function () {
|
|
return getTemplate('comment_item');
|
|
},
|
|
post: function () {
|
|
if(this.comment) // XXX
|
|
return Posts.findOne(this.comment.post);
|
|
}
|
|
}); |