1
0
Fork 0
mirror of https://github.com/vale981/Vulcan synced 2025-03-13 13:56:39 -04:00
Vulcan/packages/telescope-posts/lib/client/templates/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;
}
}
});