Browse Source

fix #1071

- off pointercancel event
pull/1116/head
진유정 8 years ago
parent
commit
f096574f54
  1. 1
      Sortable.js
  2. 2
      Sortable.min.js

1
Sortable.js

@ -867,6 +867,7 @@
_off(ownerDocument, 'touchend', this._onDrop); _off(ownerDocument, 'touchend', this._onDrop);
_off(ownerDocument, 'pointerup', this._onDrop); _off(ownerDocument, 'pointerup', this._onDrop);
_off(ownerDocument, 'touchcancel', this._onDrop); _off(ownerDocument, 'touchcancel', this._onDrop);
_off(ownerDocument, 'pointercancel', this._onDrop);
_off(ownerDocument, 'selectstart', this); _off(ownerDocument, 'selectstart', this);
}, },

2
Sortable.min.js vendored

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save