react-drag-sort icon indicating copy to clipboard operation
react-drag-sort copied to clipboard

在 FireFox 60.0.1 上不工作

Open baurine opened this issue 7 years ago • 2 comments

Chrome 上是正常的:

5

FireFox 上拖拽不起作用:

4

其它 FireFox 版本没有测试,手头只有 60.0.1 的版本。

baurine avatar Jun 06 '18 03:06 baurine

修复办法,在 onDragStart 方法中增加一行代码,如下所示:

onDragStart: function(e) {
  curDragIndex = index;
  e.nativeEvent.dataTransfer.setData('text', 'anything');
}

参考:https://stackoverflow.com/questions/19055264/why-doesnt-html5-drag-and-drop-work-in-firefox

已在 FireFox 上测试可行。

baurine avatar Jun 06 '18 07:06 baurine

666

hellosean1025 avatar Sep 07 '18 10:09 hellosean1025