Browse Source

Merge pull request #1159 from varunkumar/dev

Fix issue with evt.path in Firefox, IE
pull/1162/head
Lebedev Konstantin 7 years ago committed by GitHub
parent
commit
1a89437ef7
  1. 2
      Sortable.js
  2. 2
      Sortable.min.js

2
Sortable.js

@ -310,7 +310,7 @@
type = evt.type, type = evt.type,
touch = evt.touches && evt.touches[0], touch = evt.touches && evt.touches[0],
target = (touch || evt).target, target = (touch || evt).target,
originalTarget = evt.target.shadowRoot && evt.path[0] || target, originalTarget = evt.target.shadowRoot && (evt.path && evt.path[0]) || target,
filter = options.filter, filter = options.filter,
startIndex; startIndex;

2
Sortable.min.js vendored

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