diff options
author | Felix Nagel <info@felixnagel.com> | 2011-08-05 23:14:44 +0200 |
---|---|---|
committer | Felix Nagel <info@felixnagel.com> | 2011-08-05 23:14:44 +0200 |
commit | ea470f61f5a8f91742ac9d679a7bef7e9f41208e (patch) | |
tree | a411802908de6155f166f7cec8d0fb55f5a8f664 /ui/jquery.ui.selectmenu.js | |
parent | ceaacdf1a490bb929d59d49f832ada6e7b60d20e (diff) | |
download | jquery-ui-ea470f61f5a8f91742ac9d679a7bef7e9f41208e.tar.gz jquery-ui-ea470f61f5a8f91742ac9d679a7bef7e9f41208e.zip |
fixed: zIndex, follow up to #147, thx to @viskenxp, see: https://github.com/fnagel/jquery-ui/issues/151
Diffstat (limited to 'ui/jquery.ui.selectmenu.js')
-rw-r--r-- | ui/jquery.ui.selectmenu.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ui/jquery.ui.selectmenu.js b/ui/jquery.ui.selectmenu.js index 463a33cab..df7dd8f9a 100644 --- a/ui/jquery.ui.selectmenu.js +++ b/ui/jquery.ui.selectmenu.js @@ -829,9 +829,7 @@ $.widget("ui.selectmenu", { // update zIndex if jQuery UI is able to process var zIndexElement = this.element.zIndex(); if ( zIndexElement ) { - this.list.css({ - zIndex: zIndexElement - }); + this.listWrap.css( 'zIndex', zIndexElement ); } this.listWrap.position({ // set options for position plugin |