Vulcan/packages/telescope-posts/lib/client/templates/modules/post_avatars.js
2015-05-18 10:30:08 +09:00

8 lines
No EOL
309 B
JavaScript

Template.post_avatars.helpers({
commenters: function () {
// remove post author ID from commenters to avoid showing author's avatar again
// limit to 4 commenters in case there's more
// TODO: show a "..." sign or something
return _.first(_.without(this.commenters, this.userId), 4);
}
});