Guest User

Untitled

a guest
Feb 20th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. // line 272 and following - seems to work for me, at least i can drag across multiple tbodys
  2.  
  3. if (movingDown && jQuery.tableDnD.dragObject != currentRow) {
  4. currentRow.parentNode.insertBefore(jQuery.tableDnD.dragObject, currentRow.nextSibling);
  5. } else if (! movingDown && jQuery.tableDnD.dragObject != currentRow) {
  6. currentRow.parentNode.insertBefore(jQuery.tableDnD.dragObject, currentRow);
  7. }
Add Comment
Please, Sign In to add comment