diff --git a/Sortable.js b/Sortable.js index 8b32dfb..802ab38 100644 --- a/Sortable.js +++ b/Sortable.js @@ -495,7 +495,8 @@ }, _triggerDragStart: function (/** Event */evt, /** Touch */touch) { - touch = touch || (evt.pointerType == 'touch' ? evt : null); + var touchType = evt && (evt.pointerType == 'touch' || evt.type == 'pointerDown' || evt.type == 'pointerdown') + touch = touch || (touchType ? evt : null); if (touch) { // Touch device support