summaryrefslogtreecommitdiffstats
path: root/client/components/cards/cardDetails.js
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2018-03-29 15:03:59 +0300
committerLauri Ojansivu <x@xet7.org>2018-03-29 15:03:59 +0300
commit5e88cb24cb6a3c4a0028bde7a7bff7fa5239f3f4 (patch)
treef1cacaa545908cc14d7858252bd36fedc8ff8cf0 /client/components/cards/cardDetails.js
parentcaca2e34fc7a73da922a549b92b354ed8bf3287c (diff)
parent023b41b2056d5eedc710ea86f5e289b59071a589 (diff)
downloadwekan-5e88cb24cb6a3c4a0028bde7a7bff7fa5239f3f4.tar.gz
wekan-5e88cb24cb6a3c4a0028bde7a7bff7fa5239f3f4.tar.bz2
wekan-5e88cb24cb6a3c4a0028bde7a7bff7fa5239f3f4.zip
Merge branch 'rjevnikar-additionalDates' into devel
Diffstat (limited to 'client/components/cards/cardDetails.js')
-rw-r--r--client/components/cards/cardDetails.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/client/components/cards/cardDetails.js b/client/components/cards/cardDetails.js
index 77593a74..421cef53 100644
--- a/client/components/cards/cardDetails.js
+++ b/client/components/cards/cardDetails.js
@@ -149,6 +149,10 @@ BlazeComponent.extendComponent({
'click .js-member': Popup.open('cardMember'),
'click .js-add-members': Popup.open('cardMembers'),
'click .js-add-labels': Popup.open('cardLabels'),
+ 'click .js-received-date': Popup.open('editCardReceivedDate'),
+ 'click .js-start-date': Popup.open('editCardStartDate'),
+ 'click .js-due-date': Popup.open('editCardDueDate'),
+ 'click .js-end-date': Popup.open('editCardEndDate'),
'mouseenter .js-card-details' () {
this.parentComponent().parentComponent().showOverlay.set(true);
this.parentComponent().parentComponent().mouseHasEnterCardDetails = true;
@@ -211,8 +215,10 @@ Template.cardDetailsActionsPopup.events({
'click .js-members': Popup.open('cardMembers'),
'click .js-labels': Popup.open('cardLabels'),
'click .js-attachments': Popup.open('cardAttachments'),
+ 'click .js-received-date': Popup.open('editCardReceivedDate'),
'click .js-start-date': Popup.open('editCardStartDate'),
'click .js-due-date': Popup.open('editCardDueDate'),
+ 'click .js-end-date': Popup.open('editCardEndDate'),
'click .js-spent-time': Popup.open('editCardSpentTime'),
'click .js-move-card': Popup.open('moveCard'),
'click .js-copy-card': Popup.open('copyCard'),