diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2015-05-13 21:58:16 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-05-20 14:27:56 -0400 |
commit | 35ef105430e1c3295cd18841ce2cf2a79b26d69a (patch) | |
tree | 1e71f24b326659d6037ad249761c44789210a24e /tests/unit/droppable | |
parent | ce949812b671d26f82e21f1856d73fde2f43f2dd (diff) | |
download | jquery-ui-35ef105430e1c3295cd18841ce2cf2a79b26d69a.tar.gz jquery-ui-35ef105430e1c3295cd18841ce2cf2a79b26d69a.zip |
Droppable: Remove core event/alias and deprecated module dependencies
Diffstat (limited to 'tests/unit/droppable')
-rw-r--r-- | tests/unit/droppable/options.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/unit/droppable/options.js b/tests/unit/droppable/options.js index f2d1757c2..c7c0dbdd6 100644 --- a/tests/unit/droppable/options.js +++ b/tests/unit/droppable/options.js @@ -134,7 +134,7 @@ test( "tolerance, intersect", function() { left: 0 }); - droppable.unbind( "drop" ).bind( "drop", function() { + droppable.off( "drop" ).on( "drop", function() { equal( true, data[ 2 ], data[ 3 ] ); }); @@ -173,7 +173,7 @@ test( "tolerance, pointer", function() { $.each( dataset, function() { var data = this; - droppable.unbind( "drop" ).bind( "drop", function() { + droppable.off( "drop" ).on( "drop", function() { equal( true, data[ 2 ], data[ 3 ] ); }); @@ -187,7 +187,7 @@ test( "tolerance, pointer", function() { draggable.css({ top: 0, left: 0 }).draggable( "option", "axis", "x" ); droppable.css({ top: 15, left: 15 }); - droppable.unbind( "drop" ).bind( "drop", function() { + droppable.off( "drop" ).on( "drop", function() { ok( true, "drop fires as long as pointer is within droppable" ); }); |