mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 20:16:39 -04:00
7 lines
No EOL
142 B
JavaScript
7 lines
No EOL
142 B
JavaScript
Template.post_rank.helpers({
|
|
oneBasedRank: function(){
|
|
if (typeof this.rank !== 'undefined') {
|
|
return this.rank + 1;
|
|
}
|
|
}
|
|
}); |