diff options
author | Felix Nagel <info@felixnagel.com> | 2013-05-28 22:29:49 +0200 |
---|---|---|
committer | Felix Nagel <info@felixnagel.com> | 2013-05-28 22:29:49 +0200 |
commit | b0034316cb8eabbe0f4a1734ae792ada71072ae2 (patch) | |
tree | 2b1f3569a67359208c39a918d2898b274b0ff68a | |
parent | 2fd705cf4049b63bb4940dbbfb268652174782af (diff) | |
download | jquery-ui-b0034316cb8eabbe0f4a1734ae792ada71072ae2.tar.gz jquery-ui-b0034316cb8eabbe0f4a1734ae792ada71072ae2.zip |
fixed: issue with dialog widget, thx @ubunoir, see https://github.com/fnagel/jquery-ui/issues/300
-rw-r--r-- | ui/jquery.ui.selectmenu.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.selectmenu.js b/ui/jquery.ui.selectmenu.js index bcf64bd72..7b122d192 100644 --- a/ui/jquery.ui.selectmenu.js +++ b/ui/jquery.ui.selectmenu.js @@ -844,7 +844,7 @@ $.widget("ui.selectmenu", { this.listWrap .removeAttr( 'style' ) - .zIndex( this.element.zIndex() + 1 ) + .zIndex( this.element.zIndex() + 2 ) .position( $.extend( positionDefault, o.positionOptions ) ); } }); |