Vulcan/client/views/notification_item.js

14 lines
315 B
JavaScript
Raw Normal View History

2012-10-04 13:30:57 +09:00
Template.notification_item.helpers({
nice_time: function(){
return moment(this.timestamp).fromNow();
},
properties: function(){
return this.properties;
},
isNewRootComment: function(){
return this.event=="newRootComment";
},
isNewChildComment: function(){
return this.event=="newChildComment";
}
});