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

7 lines
142 B
JavaScript
Raw Normal View History

2015-05-18 10:30:08 +09:00
Template.post_rank.helpers({
oneBasedRank: function(){
if (typeof this.rank !== 'undefined') {
return this.rank + 1;
}
}
});