Vulcan/packages/telescope-notifications/lib/client/templates/notifications_mark_as_read.js

10 lines
226 B
JavaScript
Raw Normal View History

2015-03-22 12:27:05 +09:00
Template[getTemplate('notificationsMarkAsRead')].events({
'click .mark-as-read': function(){
Meteor.call('heraldMarkAllAsRead',
function(error, result){
error && console.log(error);
}
);
}
});