Vulcan/client/views/comments/comment_list.js
2014-07-05 11:24:28 +09:00

21 lines
No EOL
702 B
JavaScript

Template[getTemplate('comment_list')].created = function(){
postObject = this.data;
}
Template[getTemplate('comment_list')].helpers({
has_comments: function(){
var post = this;
var comments = Comments.find({postId: post._id, parent: null}, {sort: {score: -1, postedAt: -1}});
return comments.count() > 0;
},
child_comments: function(){
var post = this;
var comments = Comments.find({postId: post._id, parent: null}, {sort: {score: -1, postedAt: -1}});
return comments;
}
});
Template[getTemplate('comment_list')].rendered = function(){
// once all comments have been rendered, activate comment queuing for future real-time comments
window.queueComments = true;
}