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

7 lines
No EOL
141 B
JavaScript

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