mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
11 lines
306 B
JavaScript
11 lines
306 B
JavaScript
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);
|
|
}
|
|
);
|
|
}
|
|
});
|