Vulcan/client/views/posts/modules/post_commenters.js

6 lines
No EOL
221 B
JavaScript

Template[getTemplate('postCommenters')].helpers({
commenters: function () {
// remove post author ID from commenters to avoid showing author's avatar again
return _.without(this.commenters, this.userId);
}
});