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

12 lines
303 B
JavaScript
Raw Normal View History

Template.notificationsMarkAsRead.events({
'click .mark-as-read': function(e, t){
e.preventDefault();
t.$('li').parents('.dropdown').removeClass('dropdown-open');
Meteor.call('heraldMarkAllAsRead',
function(error, result){
error && console.log(error);
}
);
}
});