From f4a68a0f7d5d7f4d2ca84dfa2d4ecf85a2f838a6 Mon Sep 17 00:00:00 2001 From: Alexander Sulfrian Date: Sun, 20 Sep 2015 15:55:23 +0200 Subject: Fix Popup.afterCommit We need to use "function() {}" instead of the ES6 style "() {}" with popup.afterCommit because we need the original value of "this" inside the callback. --- client/components/cards/attachments.js | 2 +- client/components/cards/cardDetails.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'client/components/cards') diff --git a/client/components/cards/attachments.js b/client/components/cards/attachments.js index 5b81f115..ea621a74 100644 --- a/client/components/cards/attachments.js +++ b/client/components/cards/attachments.js @@ -1,7 +1,7 @@ Template.attachmentsGalery.events({ 'click .js-add-attachment': Popup.open('cardAttachments'), 'click .js-confirm-delete': Popup.afterConfirm('attachmentDelete', - () => { + function() { Attachments.remove(this._id); Popup.close(); } diff --git a/client/components/cards/cardDetails.js b/client/components/cards/cardDetails.js index 6ea6e777..58ce28e4 100644 --- a/client/components/cards/cardDetails.js +++ b/client/components/cards/cardDetails.js @@ -152,10 +152,10 @@ Template.moveCardPopup.events({ }); Template.cardMorePopup.events({ - 'click .js-delete': Popup.afterConfirm('cardDelete', () => { + 'click .js-delete': Popup.afterConfirm('cardDelete', function() { Popup.close(); Cards.remove(this._id); - Utils.goBoardId(this.board()._id); + Utils.goBoardId(this.boardId); }), }); -- cgit v1.2.3-1-g7c22