Browse Source

Merge pull request #10 from sp-kilobug/revert-9-sp-kilobug-patch-2

Revert "#422: fix fallback moves in owner container"
pull/459/head
sp-kilobug 9 years ago
parent
commit
71358aaf7c
  1. 8
      Sortable.js

8
Sortable.js

@ -1057,11 +1057,9 @@
/** @returns {HTMLElement|false} */ /** @returns {HTMLElement|false} */
function _ghostInBottom(el, evt) { function _ghostInBottom(el, evt) {
var lastEl = el.lastElementChild; var lastEl = el.lastElementChild,
if (lastEl===ghostEl) { rect = lastEl.getBoundingClientRect();
lastEl = lastEl.previousElementSibling || ghostEl;
}
var rect = lastEl.getBoundingClientRect();
return (evt.clientY - (rect.top + rect.height) > 5) && lastEl; // min delta return (evt.clientY - (rect.top + rect.height) > 5) && lastEl; // min delta
} }

Loading…
Cancel
Save