Browse Source

Update Sortable.js

pull/1333/head
Sapphire 7 years ago committed by GitHub
parent
commit
1d2beb5147
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      Sortable.js

3
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

Loading…
Cancel
Save