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

6 lines
148 B
JavaScript
Raw Normal View History

Template[getTemplate('postRank')].helpers({
oneBasedRank: function(){
if(typeof this.rank !== 'undefined')
return this.rank + 1;
}
});