Vulcan/client/views/posts/modules/post_info.js
2015-04-13 16:29:33 +09:00

5 lines
140 B
JavaScript

Template.postInfo.helpers({
pointsUnitDisplayText: function(){
return this.upvotes == 1 ? i18n.t('point') : i18n.t('points');
}
});