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

8 lines
324 B
JavaScript
Raw Normal View History

2014-12-16 13:34:01 +09:00
Template[getTemplate('postAvatars')].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);
}
});