| Issue 268: | D'n'd is broken for jQuery 1.6.1 | |
| 1 person starred this issue and may be notified of changes. | Back to list |
What steps will reproduce the problem? 1. replace jquery with previous version 1.6.1 2. try the d'n'd sample What is the expected output? What do you see instead? Drag doesn't work on IE, FF
Jan 7, 2012
Project Member
#1
moo...@wwwendt.de
Mar 8, 2012
Following callback will fix 211 and 268 appropriately. Without it jquery ui draggable will be stuck in drag mode.
start: function(event, ui) {
var sourceNode = ui.helper.data("dtSourceNode");
return !!sourceNode; // Abort dragging if no Node could be found
},
line 3196 in 1.2.1
Jun 9, 2012
see issue 278 |