mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
11 lines
No EOL
332 B
JavaScript
11 lines
No EOL
332 B
JavaScript
Template.comment_page.post = function(){
|
|
var selectedComment = Comments.findOne(Session.get('selectedCommentId'));
|
|
return selectedComment && Posts.findOne(selectedComment.post);
|
|
};
|
|
|
|
Template.comment_page.helpers({
|
|
comment: function(){
|
|
var comment = Comments.findOne(Session.get('selectedCommentId'));
|
|
return comment;
|
|
}
|
|
}); |