1
0
Fork 0
mirror of https://github.com/vale981/Vulcan synced 2025-03-13 13:56:39 -04:00
Vulcan/packages/telescope-notifications/lib/client/templates/notifications_mark_as_read.js

12 lines
306 B
JavaScript
Raw Normal View History

2015-05-18 10:12:48 +09:00
Template.notifications_mark_as_read.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);
}
);
}
});