Skip to content

Commit

Permalink
1.15.3
Browse files Browse the repository at this point in the history
  • Loading branch information
owen-m1 committed Sep 1, 2024
1 parent e7b4859 commit dcb8f9e
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 19 deletions.
9 changes: 5 additions & 4 deletions Sortable.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**!
* Sortable 1.15.2
* Sortable 1.15.3
* @author RubaXa <[email protected]>
* @author owenm <[email protected]>
* @license MIT
Expand Down Expand Up @@ -134,7 +134,7 @@
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
}

var version = "1.15.2";
var version = "1.15.3";

function userAgent(pattern) {
if (typeof window !== 'undefined' && window.navigator) {
Expand Down Expand Up @@ -1467,7 +1467,7 @@
}
target = parent; // store last element
}
/* jshint boss:true */ while (parent = parent.parentNode);
/* jshint boss:true */ while (parent = getParentOrHost(parent));
}
_unhideGhostForTarget();
}
Expand Down Expand Up @@ -2373,7 +2373,8 @@
nextTick: _nextTick,
cancelNextTick: _cancelNextTick,
detectDirection: _detectDirection,
getChild: getChild
getChild: getChild,
expando: expando
};

/**
Expand Down
4 changes: 2 additions & 2 deletions Sortable.min.js

Large diffs are not rendered by default.

9 changes: 5 additions & 4 deletions modular/sortable.complete.esm.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**!
* Sortable 1.15.2
* Sortable 1.15.3
* @author RubaXa <[email protected]>
* @author owenm <[email protected]>
* @license MIT
Expand Down Expand Up @@ -128,7 +128,7 @@ function _nonIterableSpread() {
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
}

var version = "1.15.2";
var version = "1.15.3";

function userAgent(pattern) {
if (typeof window !== 'undefined' && window.navigator) {
Expand Down Expand Up @@ -1461,7 +1461,7 @@ Sortable.prototype = /** @lends Sortable.prototype */{
}
target = parent; // store last element
}
/* jshint boss:true */ while (parent = parent.parentNode);
/* jshint boss:true */ while (parent = getParentOrHost(parent));
}
_unhideGhostForTarget();
}
Expand Down Expand Up @@ -2367,7 +2367,8 @@ Sortable.utils = {
nextTick: _nextTick,
cancelNextTick: _cancelNextTick,
detectDirection: _detectDirection,
getChild: getChild
getChild: getChild,
expando: expando
};

/**
Expand Down
9 changes: 5 additions & 4 deletions modular/sortable.core.esm.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**!
* Sortable 1.15.2
* Sortable 1.15.3
* @author RubaXa <[email protected]>
* @author owenm <[email protected]>
* @license MIT
Expand Down Expand Up @@ -128,7 +128,7 @@ function _nonIterableSpread() {
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
}

var version = "1.15.2";
var version = "1.15.3";

function userAgent(pattern) {
if (typeof window !== 'undefined' && window.navigator) {
Expand Down Expand Up @@ -1461,7 +1461,7 @@ Sortable.prototype = /** @lends Sortable.prototype */{
}
target = parent; // store last element
}
/* jshint boss:true */ while (parent = parent.parentNode);
/* jshint boss:true */ while (parent = getParentOrHost(parent));
}
_unhideGhostForTarget();
}
Expand Down Expand Up @@ -2367,7 +2367,8 @@ Sortable.utils = {
nextTick: _nextTick,
cancelNextTick: _cancelNextTick,
detectDirection: _detectDirection,
getChild: getChild
getChild: getChild,
expando: expando
};

/**
Expand Down
9 changes: 5 additions & 4 deletions modular/sortable.esm.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**!
* Sortable 1.15.2
* Sortable 1.15.3
* @author RubaXa <[email protected]>
* @author owenm <[email protected]>
* @license MIT
Expand Down Expand Up @@ -128,7 +128,7 @@ function _nonIterableSpread() {
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
}

var version = "1.15.2";
var version = "1.15.3";

function userAgent(pattern) {
if (typeof window !== 'undefined' && window.navigator) {
Expand Down Expand Up @@ -1461,7 +1461,7 @@ Sortable.prototype = /** @lends Sortable.prototype */{
}
target = parent; // store last element
}
/* jshint boss:true */ while (parent = parent.parentNode);
/* jshint boss:true */ while (parent = getParentOrHost(parent));
}
_unhideGhostForTarget();
}
Expand Down Expand Up @@ -2367,7 +2367,8 @@ Sortable.utils = {
nextTick: _nextTick,
cancelNextTick: _cancelNextTick,
detectDirection: _detectDirection,
getChild: getChild
getChild: getChild,
expando: expando
};

/**
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sortablejs",
"exportName": "Sortable",
"version": "1.15.2",
"version": "1.15.3",
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-transform-object-assign": "^7.2.0",
Expand Down

0 comments on commit dcb8f9e

Please sign in to comment.