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