From ea470f61f5a8f91742ac9d679a7bef7e9f41208e Mon Sep 17 00:00:00 2001 From: Felix Nagel Date: Fri, 5 Aug 2011 23:14:44 +0200 Subject: [PATCH] fixed: zIndex, follow up to #147, thx to @viskenxp, see: https://github.com/fnagel/jquery-ui/issues/151 --- ui/jquery.ui.selectmenu.js | 4 +--- 1 file changed, 1 insertion(+), 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 -- 2.39.5