Vulcan/packages/telescope-posts/lib/client/templates/modules/post_info.js

6 lines
140 B
JavaScript
Raw Normal View History

Template.postInfo.helpers({
pointsUnitDisplayText: function(){
return this.upvotes == 1 ? i18n.t('point') : i18n.t('points');
2014-09-16 15:46:48 -04:00
}
2015-04-13 16:29:33 +09:00
});