mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Tests: Use .bind() instead of .on()
This commit is contained in:
parent
9660b43c01
commit
cf85f6726b
@ -154,7 +154,7 @@ test( "allow form submit on enter when menu is not active", function() {
|
||||
delay: 0,
|
||||
minLength: 0
|
||||
});
|
||||
element.on( "keypress", function( e ) {
|
||||
element.bind( "keypress", function( e ) {
|
||||
didMove = !e.isDefaultPrevented();
|
||||
});
|
||||
element.simulate( "keydown", { keyCode: ( isKeyUp ? $.ui.keyCode.UP : $.ui.keyCode.DOWN ) } );
|
||||
|
@ -64,7 +64,7 @@
|
||||
using: using
|
||||
};
|
||||
};
|
||||
$( document ).on( "mousemove", function( event ) {
|
||||
$( document ).bind( "mousemove", function( event ) {
|
||||
element.position( positionWithOffset(
|
||||
event.pageX - targetOffset.left, event.pageY - targetOffset.top ) );
|
||||
oppositeElement.position( positionWithOffset(
|
||||
|
@ -70,7 +70,7 @@
|
||||
$('#disabled1, #disabled2, #disabled3').selectmenu();
|
||||
var disabled4 = $('#disabled4').selectmenu();
|
||||
|
||||
$("#disable_select").on("click", function() {
|
||||
$("#disable_select").bind("click", function() {
|
||||
if (disable_select) {
|
||||
disable_select = false;
|
||||
disabled4.selectmenu("disable");
|
||||
@ -82,7 +82,7 @@
|
||||
return false;
|
||||
});
|
||||
|
||||
$("#disable_option").on("click", function() {
|
||||
$("#disable_option").bind("click", function() {
|
||||
if (disable_option) {
|
||||
disable_option = false;
|
||||
disabled4.find("option:eq(0)").attr("disabled", "disabled");
|
||||
@ -94,7 +94,7 @@
|
||||
return false;
|
||||
});
|
||||
|
||||
$("#disable_optgroup").on("click", function() {
|
||||
$("#disable_optgroup").bind("click", function() {
|
||||
if (disable_optgroup) {
|
||||
disable_optgroup = false;
|
||||
disabled4.find("optgroup:eq(0)").attr("disabled", "disabled");
|
||||
|
Loading…
Reference in New Issue
Block a user