Created
October 4, 2008 21:19
-
-
Save svenfuchs/14807 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// line 272 and following - seems to work for me, at least i can drag across multiple tbodys | |
if (movingDown && jQuery.tableDnD.dragObject != currentRow) { | |
currentRow.parentNode.insertBefore(jQuery.tableDnD.dragObject, currentRow.nextSibling); | |
} else if (! movingDown && jQuery.tableDnD.dragObject != currentRow) { | |
currentRow.parentNode.insertBefore(jQuery.tableDnD.dragObject, currentRow); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment