Browse Source

Fix #1144 problem with supporting css pointer-event in IE

- IE does not support css pointer-event
pull/1145/head
ohute-couture 7 years ago
parent
commit
70af8f8ee9
  1. 2
      Sortable.js
  2. 2
      Sortable.min.js

2
Sortable.js

@ -73,7 +73,7 @@
supportDraggable = !!('draggable' in document.createElement('div')),
supportCssPointerEvents = (function (el) {
// false when IE11
if (!!navigator.userAgent.match(/Trident.*rv[ :]?11\./)) {
if (!!navigator.userAgent.match(/(?:Trident.*rv[ :]?11\.|msie)/i)) {
return false;
}
el = document.createElement('x');

2
Sortable.min.js vendored

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