Vulcan/packages/nova-posts/lib/client/templates/modules/post_rank.js
2016-02-17 14:27:27 +09:00

7 lines
No EOL
142 B
JavaScript

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