File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,9 @@ $.widget("ui.selectmenu", {
45
45
46
46
// define safe mouseup for future toggling
47
47
this . _safemouseup = true ;
48
+
49
+ // FIXME temp workaround for IE
50
+ if ( $ . browser . msie ) o . typeAhead = "" ;
48
51
49
52
// create menu button wrapper
50
53
this . newelement = $ ( '<a class="' + this . widgetBaseClass + ' ui-widget ui-state-default ui-corner-all" id="' + this . ids [ 0 ] + '" role="button" href="#" tabindex="0" aria-haspopup="true" aria-owns="' + this . ids [ 1 ] + '"></a>' )
@@ -219,9 +222,9 @@ $.widget("ui.selectmenu", {
219
222
self . close ( event , true ) ;
220
223
break ;
221
224
default :
222
- ret = true ;
223
-
224
- self . _typeAhead ( event . keyCode , 'focus' ) ; break ;
225
+ ret = true ;
226
+ self . _typeAhead ( event . keyCode , 'focus' ) ;
227
+ break ;
225
228
}
226
229
return ret ;
227
230
} ) ;
You can’t perform that action at this time.
0 commit comments