Vulcan/packages/telescope-posts/lib/client/templates/modules/post_rank.js
2015-05-18 10:30:08 +09:00

7 lines
No EOL
142 B
JavaScript

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