diff options
author | Felix Nagel <info@felixnagel.com> | 2011-09-27 01:50:06 +0200 |
---|---|---|
committer | Felix Nagel <info@felixnagel.com> | 2011-09-27 01:50:06 +0200 |
commit | afec3f9e0bdb10c72a407424ec4dde47ef468742 (patch) | |
tree | e0bbde10f87644fb189cb326c677ae58592d1be0 /ui/jquery.ui.selectmenu.js | |
parent | 3a8216fed8441db6c51ab36e463bd326c2c1d001 (diff) | |
download | jquery-ui-afec3f9e0bdb10c72a407424ec4dde47ef468742.tar.gz jquery-ui-afec3f9e0bdb10c72a407424ec4dde47ef468742.zip |
Selectmenu: “eats” too many key strokes when focused
Diffstat (limited to 'ui/jquery.ui.selectmenu.js')
-rw-r--r-- | ui/jquery.ui.selectmenu.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ui/jquery.ui.selectmenu.js b/ui/jquery.ui.selectmenu.js index d1aa75a3c..7682e7639 100644 --- a/ui/jquery.ui.selectmenu.js +++ b/ui/jquery.ui.selectmenu.js @@ -135,7 +135,6 @@ $.widget( "ui.selectmenu", { break; default: self.list.trigger( event ); - ret = false; } return ret; } @@ -361,7 +360,7 @@ $.widget( "ui.selectmenu", { index: index, value: option.attr( 'value' ), label: option.text(), - optgroup: optgroup.attr("label") || false, + optgroup: optgroup.attr( "label" ) || false, disabled: optgroup.attr( "disabled" ) || option.attr( "disabled" ) }); }); |