diff options
author | Corey Frang <gnarf@gnarf.net> | 2011-08-20 18:05:39 -0500 |
---|---|---|
committer | Corey Frang <gnarf@gnarf.net> | 2011-08-20 18:05:39 -0500 |
commit | dfe75e1b552013c440186645a7a1ae9ec3c757b5 (patch) | |
tree | 3180785997b1c63ebdb24fbf66b020c8bbd95848 /tests | |
parent | 96c2c8e639abc1894cdb1588982219f31634a164 (diff) | |
download | jquery-ui-dfe75e1b552013c440186645a7a1ae9ec3c757b5.tar.gz jquery-ui-dfe75e1b552013c440186645a7a1ae9ec3c757b5.zip |
Dialog: Update to 96e5c24 - keyup apparently doesn't work like I thought it would everywhere, switching back to keydown.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/dialog/dialog_tickets.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/dialog/dialog_tickets.js b/tests/unit/dialog/dialog_tickets.js index e65f939e0..b203ca7d5 100644 --- a/tests/unit/dialog/dialog_tickets.js +++ b/tests/unit/dialog/dialog_tickets.js @@ -14,7 +14,7 @@ asyncTest( "#3123: Prevent tabbing out of modal dialogs", function() { inputs.eq( 1 ).focus(); equal( document.activeElement, inputs[1], "Focus set on second input" ); - inputs.eq( 1 ).simulate( "keyup", { keyCode: $.ui.keyCode.TAB }); + inputs.eq( 1 ).simulate( "keydown", { keyCode: $.ui.keyCode.TAB }); setTimeout( checkTab, 2 ); |