Fix lint warnings

This commit is contained in:
Ghassen Rjab 2018-02-27 02:57:58 +01:00
parent 1efa66b58c
commit 59ba2111e8
9 changed files with 40 additions and 40 deletions

View file

@ -156,7 +156,7 @@ Template.memberPopup.events({
}),
'click .js-leave-member': Popup.afterConfirm('leaveBoard', () => {
const boardId = Session.get('currentBoard');
Meteor.call('quitBoard', boardId, (err, ret) => {
Meteor.call('quitBoard', boardId, () => {
Popup.close();
FlowRouter.go('home');
});