Skip to content

Commit dcb8f9e

Browse files
committed
1.15.3
1 parent e7b4859 commit dcb8f9e

6 files changed

+23
-19
lines changed

Sortable.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**!
2-
* Sortable 1.15.2
2+
* Sortable 1.15.3
33
* @author RubaXa <[email protected]>
44
* @author owenm <[email protected]>
55
* @license MIT
@@ -134,7 +134,7 @@
134134
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
135135
}
136136

137-
var version = "1.15.2";
137+
var version = "1.15.3";
138138

139139
function userAgent(pattern) {
140140
if (typeof window !== 'undefined' && window.navigator) {
@@ -1467,7 +1467,7 @@
14671467
}
14681468
target = parent; // store last element
14691469
}
1470-
/* jshint boss:true */ while (parent = parent.parentNode);
1470+
/* jshint boss:true */ while (parent = getParentOrHost(parent));
14711471
}
14721472
_unhideGhostForTarget();
14731473
}
@@ -2373,7 +2373,8 @@
23732373
nextTick: _nextTick,
23742374
cancelNextTick: _cancelNextTick,
23752375
detectDirection: _detectDirection,
2376-
getChild: getChild
2376+
getChild: getChild,
2377+
expando: expando
23772378
};
23782379

23792380
/**

Sortable.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modular/sortable.complete.esm.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**!
2-
* Sortable 1.15.2
2+
* Sortable 1.15.3
33
* @author RubaXa <[email protected]>
44
* @author owenm <[email protected]>
55
* @license MIT
@@ -128,7 +128,7 @@ function _nonIterableSpread() {
128128
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
129129
}
130130

131-
var version = "1.15.2";
131+
var version = "1.15.3";
132132

133133
function userAgent(pattern) {
134134
if (typeof window !== 'undefined' && window.navigator) {
@@ -1461,7 +1461,7 @@ Sortable.prototype = /** @lends Sortable.prototype */{
14611461
}
14621462
target = parent; // store last element
14631463
}
1464-
/* jshint boss:true */ while (parent = parent.parentNode);
1464+
/* jshint boss:true */ while (parent = getParentOrHost(parent));
14651465
}
14661466
_unhideGhostForTarget();
14671467
}
@@ -2367,7 +2367,8 @@ Sortable.utils = {
23672367
nextTick: _nextTick,
23682368
cancelNextTick: _cancelNextTick,
23692369
detectDirection: _detectDirection,
2370-
getChild: getChild
2370+
getChild: getChild,
2371+
expando: expando
23712372
};
23722373

23732374
/**

modular/sortable.core.esm.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**!
2-
* Sortable 1.15.2
2+
* Sortable 1.15.3
33
* @author RubaXa <[email protected]>
44
* @author owenm <[email protected]>
55
* @license MIT
@@ -128,7 +128,7 @@ function _nonIterableSpread() {
128128
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
129129
}
130130

131-
var version = "1.15.2";
131+
var version = "1.15.3";
132132

133133
function userAgent(pattern) {
134134
if (typeof window !== 'undefined' && window.navigator) {
@@ -1461,7 +1461,7 @@ Sortable.prototype = /** @lends Sortable.prototype */{
14611461
}
14621462
target = parent; // store last element
14631463
}
1464-
/* jshint boss:true */ while (parent = parent.parentNode);
1464+
/* jshint boss:true */ while (parent = getParentOrHost(parent));
14651465
}
14661466
_unhideGhostForTarget();
14671467
}
@@ -2367,7 +2367,8 @@ Sortable.utils = {
23672367
nextTick: _nextTick,
23682368
cancelNextTick: _cancelNextTick,
23692369
detectDirection: _detectDirection,
2370-
getChild: getChild
2370+
getChild: getChild,
2371+
expando: expando
23712372
};
23722373

23732374
/**

modular/sortable.esm.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**!
2-
* Sortable 1.15.2
2+
* Sortable 1.15.3
33
* @author RubaXa <[email protected]>
44
* @author owenm <[email protected]>
55
* @license MIT
@@ -128,7 +128,7 @@ function _nonIterableSpread() {
128128
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
129129
}
130130

131-
var version = "1.15.2";
131+
var version = "1.15.3";
132132

133133
function userAgent(pattern) {
134134
if (typeof window !== 'undefined' && window.navigator) {
@@ -1461,7 +1461,7 @@ Sortable.prototype = /** @lends Sortable.prototype */{
14611461
}
14621462
target = parent; // store last element
14631463
}
1464-
/* jshint boss:true */ while (parent = parent.parentNode);
1464+
/* jshint boss:true */ while (parent = getParentOrHost(parent));
14651465
}
14661466
_unhideGhostForTarget();
14671467
}
@@ -2367,7 +2367,8 @@ Sortable.utils = {
23672367
nextTick: _nextTick,
23682368
cancelNextTick: _cancelNextTick,
23692369
detectDirection: _detectDirection,
2370-
getChild: getChild
2370+
getChild: getChild,
2371+
expando: expando
23712372
};
23722373

23732374
/**

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "sortablejs",
33
"exportName": "Sortable",
4-
"version": "1.15.2",
4+
"version": "1.15.3",
55
"devDependencies": {
66
"@babel/core": "^7.4.4",
77
"@babel/plugin-transform-object-assign": "^7.2.0",

0 commit comments

Comments
 (0)