We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b1b34c commit 57051e8Copy full SHA for 57051e8
tests/unit/draggable/draggable_test_helpers.js
@@ -60,7 +60,7 @@ TestHelpers.draggable = {
60
61
},
62
trackMouseCss : function( el ) {
63
- el.on( "drag", function() {
+ el.bind( "drag", function() {
64
el.data( "last_dragged_cursor", $("body").css("cursor") );
65
});
66
@@ -69,7 +69,7 @@ TestHelpers.draggable = {
69
// appendTo ignored without being clone
70
el.draggable( "option", "helper", "clone" );
71
72
- el.on( "drag", function(e,ui) {
+ el.bind( "drag", function(e,ui) {
73
// Get what parent is at time of drag
74
el.data( "last_dragged_parent", ui.helper.parent()[0] );
75
0 commit comments