|
|
@ -105,7 +105,8 @@ |
|
|
|
dataTransfer.setData('Text', dragEl.textContent); |
|
|
|
dataTransfer.setData('Text', dragEl.textContent); |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
group; |
|
|
|
|
|
|
|
|
|
|
|
group = options.group; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Set default options
|
|
|
|
// Set default options
|
|
|
@ -114,10 +115,9 @@ |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!options.group.name) { |
|
|
|
if (!group || typeof group != 'object') { |
|
|
|
options.group = { name: options.group }; |
|
|
|
group = options.group = { name: group }; |
|
|
|
} |
|
|
|
} |
|
|
|
group = options.group; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
['pull', 'put'].forEach(function (key) { |
|
|
|
['pull', 'put'].forEach(function (key) { |
|
|
@ -450,7 +450,10 @@ |
|
|
|
isOwner = (activeGroup === group), |
|
|
|
isOwner = (activeGroup === group), |
|
|
|
canSort = options.sort; |
|
|
|
canSort = options.sort; |
|
|
|
|
|
|
|
|
|
|
|
(evt.stopPropagation !== void 0) && evt.stopPropagation(); |
|
|
|
if (evt.preventDefault !== void 0) { |
|
|
|
|
|
|
|
evt.preventDefault(); |
|
|
|
|
|
|
|
evt.stopPropagation(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (!_silent && activeGroup && |
|
|
|
if (!_silent && activeGroup && |
|
|
|
(isOwner |
|
|
|
(isOwner |
|
|
@ -638,7 +641,7 @@ |
|
|
|
Sortable.active = null; |
|
|
|
Sortable.active = null; |
|
|
|
|
|
|
|
|
|
|
|
// Save sorting
|
|
|
|
// Save sorting
|
|
|
|
this.options.store && this.options.store.set(this); |
|
|
|
this.save() |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
@ -693,7 +696,6 @@ |
|
|
|
} |
|
|
|
} |
|
|
|
}, this); |
|
|
|
}, this); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
order.forEach(function (id) { |
|
|
|
order.forEach(function (id) { |
|
|
|
if (items[id]) { |
|
|
|
if (items[id]) { |
|
|
|
rootEl.removeChild(items[id]); |
|
|
|
rootEl.removeChild(items[id]); |
|
|
@ -703,6 +705,15 @@ |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Save the current sorting |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
save: function () { |
|
|
|
|
|
|
|
var store = this.options.store; |
|
|
|
|
|
|
|
store && store.set(this); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* For each element in the set, get the first element that matches the selector by testing the element itself and traversing up through its ancestors in the DOM tree. |
|
|
|
* For each element in the set, get the first element that matches the selector by testing the element itself and traversing up through its ancestors in the DOM tree. |
|
|
|
* @param {HTMLElement} el |
|
|
|
* @param {HTMLElement} el |
|
|
|