diff options
author | Hans Hillen <hans.hillen@gmail.com> | 2011-05-26 00:31:16 +0200 |
---|---|---|
committer | Hans Hillen <hans.hillen@gmail.com> | 2011-05-26 00:31:16 +0200 |
commit | ab2bbd3bab8c0dd106fe1a1ca4ae4d5f30e97986 (patch) | |
tree | 26f4bf72f7e426355886faf947c41cdb05182ff2 /ui/jquery.ui.popup.js | |
parent | f45fc08f8638640ac30a47d9acbdb0a544a275d9 (diff) | |
download | jquery-ui-ab2bbd3bab8c0dd106fe1a1ca4ae4d5f30e97986.tar.gz jquery-ui-ab2bbd3bab8c0dd106fe1a1ca4ae4d5f30e97986.zip |
Key event fix
Diffstat (limited to 'ui/jquery.ui.popup.js')
-rw-r--r-- | ui/jquery.ui.popup.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.popup.js b/ui/jquery.ui.popup.js index 10e6931b8..7ccf0ff2e 100644 --- a/ui/jquery.ui.popup.js +++ b/ui/jquery.ui.popup.js @@ -155,7 +155,7 @@ $.widget( "ui.popup", { else { //default use case, popup could be anything (e.g. a form) this.element - .bind( "keypress.ui-popup", function( event ) { + .bind( "keydown.ui-popup", function( event ) { if ( event.keyCode !== $.ui.keyCode.TAB ) { return; } |