header.js 237 Bytes edit raw blame history 1 2 3 4 5 6 7 8 9 10 11 Template.header.events({ 'click .logout' () { Meteor.logout( ( error ) => { if ( error ) { Bert.alert( error.reason, 'warning' ); } else { Bert.alert( 'Logged out!', 'success' ); } }); } });