From 0d40222b6420a4b4177067345b50ed8140982061 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8A=B1=E8=A3=A4=E8=A1=A9?= Date: Thu, 4 Apr 2019 16:21:45 +0800 Subject: [PATCH] fix[Drag]: fixed drag bug in firefox (#1841) --- src/components/DndList/index.vue | 7 ++++++- src/components/Kanban/index.vue | 8 ++++++++ src/views/table/dragTable.vue | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/src/components/DndList/index.vue b/src/components/DndList/index.vue index a4643c0a..23ca006e 100644 --- a/src/components/DndList/index.vue +++ b/src/components/DndList/index.vue @@ -2,7 +2,7 @@

{{ list1Title }}

- +
{{ element.id }}[{{ element.author }}] {{ element.title }} @@ -94,6 +94,11 @@ export default { if (this.isNotInList1(ele)) { this.list1.push(ele) } + }, + setData(dataTransfer) { + // to avoid Firefox bug + // Detail see : https://github.com/RubaXa/Sortable/issues/1012 + dataTransfer.setData('Text', '') } } } diff --git a/src/components/Kanban/index.vue b/src/components/Kanban/index.vue index 1171b5b8..c2cb4691 100644 --- a/src/components/Kanban/index.vue +++ b/src/components/Kanban/index.vue @@ -7,6 +7,7 @@ :list="list" v-bind="$attrs" class="board-column-content" + :set-data="setData" >
{{ element.name }} {{ element.id }} @@ -39,6 +40,13 @@ export default { return [] } } + }, + methods: { + setData(dataTransfer) { + // to avoid Firefox bug + // Detail see : https://github.com/RubaXa/Sortable/issues/1012 + dataTransfer.setData('Text', '') + } } } diff --git a/src/views/table/dragTable.vue b/src/views/table/dragTable.vue index 50077c6c..7abbd932 100644 --- a/src/views/table/dragTable.vue +++ b/src/views/table/dragTable.vue @@ -113,9 +113,9 @@ export default { this.sortable = Sortable.create(el, { ghostClass: 'sortable-ghost', // Class name for the drop placeholder, setData: function(dataTransfer) { - dataTransfer.setData('Text', '') // to avoid Firefox bug // Detail see : https://github.com/RubaXa/Sortable/issues/1012 + dataTransfer.setData('Text', '') }, onEnd: evt => { const targetRow = this.list.splice(evt.oldIndex, 1)[0]