Vulcan/packages/nova-posts/lib/client/templates/modules/post_info.js
2016-02-17 14:27:27 +09:00

5 lines
142 B
JavaScript

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