We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c14eaca + 3a1a63c commit 8ed9515Copy full SHA for 8ed9515
src/public/packages/nestedSortable/jquery.mjs.nestedSortable2.js
@@ -264,6 +264,12 @@
264
childLevels = this._getChildLevels(this.helper);
265
newList = document.createElement(o.listType);
266
267
+ // dragDirection object is required by jquery.ui.sortable.js 1.13+
268
+ this.dragDirection = {
269
+ vertical: this._getDragVerticalDirection(),
270
+ horizontal: this._getDragHorizontalDirection()
271
+ };
272
+
273
//Rearrange
274
for (i = this.items.length - 1; i >= 0; i--) {
275
0 commit comments