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 58b3f2c commit 14bda14Copy full SHA for 14bda14
ui/jquery.ui.selectmenu.js
@@ -153,9 +153,10 @@ $.widget("ui.selectmenu", {
153
self._refreshValue();
154
})
155
// FIXME: newelement can be null under unclear circumstances in IE8
156
+ // TODO not sure if this is still a problem (fnagel 20.03.11)
157
.bind("focus.selectmenu", function() {
- if (this.newelement) {
158
- this.newelement[0].focus();
+ if (self.newelement) {
159
+ self.newelement[0].focus();
160
}
161
});
162
0 commit comments