mirror of
https://github.com/vale981/Vulcan
synced 2025-03-08 19:11:38 -05:00
30 lines
No EOL
612 B
JavaScript
30 lines
No EOL
612 B
JavaScript
Template.notification_item.helpers({
|
|
nice_time: function(){
|
|
return moment(this.timestamp).fromNow();
|
|
},
|
|
properties: function(){
|
|
return this.properties;
|
|
},
|
|
notificationHTML: function(){
|
|
return getNotification(this.event, this.properties).html;
|
|
}
|
|
});
|
|
|
|
Template.notification_item.events({
|
|
'click .action-link': function(event, instance){
|
|
var notificationId=instance.data._id;
|
|
Notifications.update(
|
|
{_id: notificationId},
|
|
{
|
|
$set:{
|
|
read: true
|
|
}
|
|
},
|
|
function(error, result){
|
|
if(error){
|
|
console.log(error);
|
|
}
|
|
}
|
|
);
|
|
}
|
|
}); |