UNPKG

splitify

Version:

Splitify is a way to save your time when sharing the restaurant bill with someone

18 lines (16 loc) 321 B
Template.profile.helpers({ profile: function() { return Meteor.user(); } }); Template.profile.events({ 'click #profile-sign-out-btn': function() { Meteor.logout(function(error) { //@todo: toast the error if (error) { console.log(error); } Router.go('home'); }); } });