diff options
author | Haocen Xu <haocen.xu@gmail.com> | 2018-07-06 14:42:36 -0400 |
---|---|---|
committer | Haocen Xu <haocen.xu@gmail.com> | 2018-07-06 14:42:36 -0400 |
commit | 616dade81c25b10fc409aee1bcc9a93ddbfee81b (patch) | |
tree | 16188860b3eb7db871ab75c2094db91407e21926 /client/components/cards/cardDetails.js | |
parent | 43d86d7d5d3f3b34b0500f6d5d3afe7bd86b0060 (diff) | |
download | wekan-616dade81c25b10fc409aee1bcc9a93ddbfee81b.tar.gz wekan-616dade81c25b10fc409aee1bcc9a93ddbfee81b.tar.bz2 wekan-616dade81c25b10fc409aee1bcc9a93ddbfee81b.zip |
Hotfix more sortable elements
Diffstat (limited to 'client/components/cards/cardDetails.js')
-rw-r--r-- | client/components/cards/cardDetails.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/client/components/cards/cardDetails.js b/client/components/cards/cardDetails.js index 5fee1680..1583a51f 100644 --- a/client/components/cards/cardDetails.js +++ b/client/components/cards/cardDetails.js @@ -132,6 +132,9 @@ BlazeComponent.extendComponent({ }, }); + // ugly touch event hotfix + enableClickOnTouch('.card-checklist-items .js-checklist'); + const $subtasksDom = this.$('.card-subtasks-items'); $subtasksDom.sortable({ @@ -167,6 +170,9 @@ BlazeComponent.extendComponent({ }, }); + // ugly touch event hotfix + enableClickOnTouch('.card-subtasks-items .js-subtasks'); + function userIsMember() { return Meteor.user() && Meteor.user().isBoardMember(); } |