瀏覽代碼

Merge pull request #3051 from marc1006/3049

Reactivate the touch event fix for the boards list
Lauri Ojansivu 5 年之前
父節點
當前提交
927e43ab3f
共有 1 個文件被更改,包括 4 次插入1 次删除
  1. 4 1
      client/components/boards/boardsList.js

+ 4 - 1
client/components/boards/boardsList.js

@@ -1,5 +1,5 @@
 const subManager = new SubsManager();
 const subManager = new SubsManager();
-const { calculateIndex } = Utils;
+const { calculateIndex, enableClickOnTouch } = Utils;
 
 
 Template.boardListHeaderBar.events({
 Template.boardListHeaderBar.events({
   'click .js-open-archived-board'() {
   'click .js-open-archived-board'() {
@@ -68,6 +68,9 @@ BlazeComponent.extendComponent({
       },
       },
     });
     });
 
 
+    // ugly touch event hotfix
+    enableClickOnTouch(itemsSelector);
+
     // Disable drag-dropping if the current user is not a board member or is comment only
     // Disable drag-dropping if the current user is not a board member or is comment only
     this.autorun(() => {
     this.autorun(() => {
       $boards.sortable('option', 'disabled', !userIsAllowedToMove());
       $boards.sortable('option', 'disabled', !userIsAllowedToMove());