mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
17 lines
No EOL
404 B
JavaScript
17 lines
No EOL
404 B
JavaScript
Template[getTemplate('comment_reply')].helpers({
|
|
post_item: function () {
|
|
return getTemplate('post_item');
|
|
},
|
|
comment_item: function () {
|
|
return getTemplate('comment_item');
|
|
},
|
|
comment_form: function () {
|
|
return getTemplate('comment_form');
|
|
},
|
|
post: function () {
|
|
if(this.comment){ // XXX
|
|
var post = Posts.findOne(this.comment.postId);
|
|
return post;
|
|
}
|
|
}
|
|
}); |