mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Key event fix
This commit is contained in:
parent
f45fc08f86
commit
ab2bbd3bab
2
ui/jquery.ui.popup.js
vendored
2
ui/jquery.ui.popup.js
vendored
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user