Vulcan/client/views/notification_item.js
2012-10-04 14:54:26 +09:00

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";
}
});