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 e5f7d50 commit 7d9e06cCopy full SHA for 7d9e06c
.gitignore
@@ -6,3 +6,4 @@ docs
6
*.patch
7
.DS_Store
8
*.db
9
+*.session
ui/jquery.ui.selectmenu.js
@@ -329,6 +329,11 @@ $.widget("ui.selectmenu", {
329
//update value
330
this.value(this._selectedIndex());
331
332
+ // needed when selectmenu is placed at the very bottom / top of the page
333
+ window.setTimeout(function() {
334
+ self._refreshPosition();
335
+ }, 200);
336
+
337
// needed when window is resized
338
$(window).resize(function(){
339
self._refreshPosition();
0 commit comments