Skip to content

Commit

Permalink
Selectmenu: “eats” too many key strokes when focused
Browse files Browse the repository at this point in the history
  • Loading branch information
fnagel committed Sep 26, 2011
1 parent 3a8216f commit afec3f9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ui/jquery.ui.selectmenu.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ $.widget( "ui.selectmenu", {
break; break;
default: default:
self.list.trigger( event ); self.list.trigger( event );
ret = false;
} }
return ret; return ret;
} }
Expand Down Expand Up @@ -361,7 +360,7 @@ $.widget( "ui.selectmenu", {
index: index, index: index,
value: option.attr( 'value' ), value: option.attr( 'value' ),
label: option.text(), label: option.text(),
optgroup: optgroup.attr("label") || false, optgroup: optgroup.attr( "label" ) || false,
disabled: optgroup.attr( "disabled" ) || option.attr( "disabled" ) disabled: optgroup.attr( "disabled" ) || option.attr( "disabled" )
}); });
}); });
Expand Down

0 comments on commit afec3f9

Please sign in to comment.