summaryrefslogtreecommitdiffstats
path: root/client/components/cards/attachments.js
diff options
context:
space:
mode:
authorMaxime Quandalle <maxime@quandalle.com>2015-09-20 16:57:00 +0200
committerMaxime Quandalle <maxime@quandalle.com>2015-09-20 16:57:00 +0200
commit33888f9fbbe61376c2390a9b6d07f123eda23624 (patch)
tree42acaa6d4be4eab951e9e2965ce9013e99a05347 /client/components/cards/attachments.js
parent9d5f473395e75d1c45940be43b06312085be4010 (diff)
parentf4a68a0f7d5d7f4d2ca84dfa2d4ecf85a2f838a6 (diff)
downloadwekan-33888f9fbbe61376c2390a9b6d07f123eda23624.tar.gz
wekan-33888f9fbbe61376c2390a9b6d07f123eda23624.tar.bz2
wekan-33888f9fbbe61376c2390a9b6d07f123eda23624.zip
Merge pull request #316 from AlexanderS/fix/delete-card
Fix card deletion This bug was introduced in b3851817.
Diffstat (limited to 'client/components/cards/attachments.js')
-rw-r--r--client/components/cards/attachments.js2
1 files changed, 1 insertions, 1 deletions
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();
}