|
@@ -1,5 +1,5 @@
|
|
|
const subManager = new SubsManager();
|
|
|
-const { calculateIndexData, enableClickOnTouch } = Utils;
|
|
|
+const { calculateIndexData } = Utils;
|
|
|
|
|
|
let cardColors;
|
|
|
Meteor.startup(() => {
|
|
@@ -231,9 +231,6 @@ BlazeComponent.extendComponent({
|
|
|
},
|
|
|
});
|
|
|
|
|
|
- // ugly touch event hotfix
|
|
|
- enableClickOnTouch('.card-checklist-items .js-checklist');
|
|
|
-
|
|
|
const $subtasksDom = this.$('.card-subtasks-items');
|
|
|
|
|
|
$subtasksDom.sortable({
|
|
@@ -269,9 +266,6 @@ BlazeComponent.extendComponent({
|
|
|
},
|
|
|
});
|
|
|
|
|
|
- // ugly touch event hotfix
|
|
|
- enableClickOnTouch('.card-subtasks-items .js-subtasks');
|
|
|
-
|
|
|
function userIsMember() {
|
|
|
return Meteor.user() && Meteor.user().isBoardMember();
|
|
|
}
|