Skip to content

Commit a0e160a

Browse files
committed
#1571: Dont use pointer events in Safari
1 parent 7408673 commit a0e160a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Sortable.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ function Sortable(el, options) {
392392
fallbackOnBody: false,
393393
fallbackTolerance: 0,
394394
fallbackOffset: {x: 0, y: 0},
395-
supportPointer: Sortable.supportPointer !== false && ('PointerEvent' in window),
395+
supportPointer: Sortable.supportPointer !== false && ('PointerEvent' in window) && !Safari,
396396
emptyInsertThreshold: 5
397397
};
398398

0 commit comments

Comments
 (0)