mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
14 lines
No EOL
293 B
JavaScript
14 lines
No EOL
293 B
JavaScript
Template.notification_item.helpers({
|
|
nice_time: function(){
|
|
return moment(this.timestamp).fromNow();
|
|
},
|
|
properties: function(){
|
|
return this.properties;
|
|
},
|
|
isNewComment: function(){
|
|
return this.event=="newComment";
|
|
},
|
|
isNewReply: function(){
|
|
return this.event=="newReply";
|
|
}
|
|
}); |