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

7 lines
141 B
JavaScript
Raw Normal View History

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