Browse Source

#973: * touchmove

ios
Lebedev Konstantin 8 years ago
parent
commit
946bec37c5
  1. 6
      Sortable.js

6
Sortable.js

@ -1428,6 +1428,12 @@
}
}
_on(document, 'touchmove', function (evt) {
if (Sortable.active) {
evt.preventDefault();
}
});
try {
window.addEventListener('test', null, Object.defineProperty({}, 'passive', {
get: function () {

Loading…
Cancel
Save