From: Scott González Date: Tue, 7 Sep 2010 18:06:07 +0000 (-0400) Subject: Core: Avoid layout bug in IE with minHeight support test. X-Git-Tag: 1.8.5~17 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=9a2dafa94828fc43537c6fbfd133be84ca55d04b;p=jquery-ui.git Core: Avoid layout bug in IE with minHeight support test. --- diff --git a/ui/jquery.ui.core.js b/ui/jquery.ui.core.js index ff7815c75..b52ff9171 100644 --- a/ui/jquery.ui.core.js +++ b/ui/jquery.ui.core.js @@ -228,7 +228,9 @@ $(function() { }); $.support.minHeight = body.appendChild( div ).offsetHeight === 100; - body.removeChild( div ); + // set display to none to avoid a layout bug in IE + // http://dev.jquery.com/ticket/4014 + body.removeChild( div ).style.display = "none"; });