We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d7d5d6 commit 2217239Copy full SHA for 2217239
src/Sortable.js
@@ -394,7 +394,8 @@ function Sortable(el, options) {
394
fallbackOnBody: false,
395
fallbackTolerance: 0,
396
fallbackOffset: {x: 0, y: 0},
397
- supportPointer: Sortable.supportPointer !== false && ('PointerEvent' in window) && !Safari,
+ // Disabled on Safari: #1571; Enabled on Safari IOS: #2244
398
+ supportPointer: Sortable.supportPointer !== false && ('PointerEvent' in window) && (!Safari || IOS),
399
emptyInsertThreshold: 5
400
};
401
0 commit comments