We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32b0936 commit a9b18bcCopy full SHA for a9b18bc
ui/jquery.ui.selectmenu.js
@@ -492,7 +492,9 @@ $.widget( "ui.selectmenu", {
492
_resizeMenu: function() {
493
this.menu.outerWidth( Math.max(
494
this.button.outerWidth(),
495
- this.menu.width( "" ).outerWidth()
+ // IE10 wraps long text (possibly a rounding bug)
496
+ // so we add 1px to avoid the wrapping
497
+ this.menu.width( "" ).outerWidth() + 1
498
) );
499
},
500
0 commit comments