From b0034316cb8eabbe0f4a1734ae792ada71072ae2 Mon Sep 17 00:00:00 2001 From: Felix Nagel Date: Tue, 28 May 2013 22:29:49 +0200 Subject: [PATCH] fixed: issue with dialog widget, thx @ubunoir, see https://github.com/fnagel/jquery-ui/issues/300 --- ui/jquery.ui.selectmenu.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ) ); } }); -- 2.39.5