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 /ui | |
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 'ui')
-rw-r--r-- | ui/jquery.ui.dialog.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.dialog.js b/ui/jquery.ui.dialog.js index e8107db7c..065d640fb 100644 --- a/ui/jquery.ui.dialog.js +++ b/ui/jquery.ui.dialog.js @@ -293,7 +293,7 @@ $.widget("ui.dialog", { // prevent tabbing out of modal dialogs if ( options.modal ) { - uiDialog.bind( "keyup.ui-dialog", function( event ) { + uiDialog.bind( "keydown.ui-dialog", function( event ) { if ( event.keyCode !== $.ui.keyCode.TAB ) { return; } |