mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
11 lines
290 B
JavaScript
11 lines
290 B
JavaScript
![]() |
Template[getTemplate('postMeta')].helpers({
|
||
|
postsMustBeApproved: function () {
|
||
|
return !!getSetting('requirePostsApproval');
|
||
|
},
|
||
|
isApproved: function(){
|
||
|
return this.status == STATUS_APPROVED;
|
||
|
},
|
||
|
short_score: function(){
|
||
|
return Math.floor(this.score*1000)/1000;
|
||
|
},
|
||
|
});
|