Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions js/jquery.tablednd.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,10 +167,8 @@ jQuery.tableDnD = {
// Iterate through each row, the row is bound to "this"
if (! $(this).hasClass("nodrag")) {
$(this).bind(startEvent, function(e) {
if (e.target.tagName === "TD") {
$.tableDnD.initialiseDrag(this, table, this, e, config);
return false;
}
$.tableDnD.initialiseDrag(this, table, this, e, config);
return false;
}).css("cursor", "move"); // Store the tableDnD object
} else {
$(this).css("cursor", ""); // Remove the cursor if we don't have the nodrag class
Expand Down