mirror of
https://github.com/jquery/jquery-ui.git
synced 2026-04-20 03:02:41 -04:00
Core: Improvements to minHeight support test. Thanks jdalton.
This commit is contained in:
16
ui/jquery.ui.core.js
vendored
16
ui/jquery.ui.core.js
vendored
@@ -217,14 +217,18 @@ $.extend( $.expr[ ":" ], {
|
||||
|
||||
// support
|
||||
$(function() {
|
||||
var div = document.createElement( "div" );
|
||||
div.style.minHeight = "100px";
|
||||
var div = document.createElement( "div" ),
|
||||
body = document.body;
|
||||
|
||||
document.body.appendChild( div );
|
||||
$.support.minHeight = div.offsetHeight === 100;
|
||||
document.body.removeChild( div ).style.display = "none";
|
||||
$.extend( div.style, {
|
||||
minHeight: "100px",
|
||||
height: "auto",
|
||||
padding: 0,
|
||||
borderWidth: 0
|
||||
});
|
||||
|
||||
div = null;
|
||||
$.support.minHeight = body.appendChild( div ).offsetHeight === 100;
|
||||
body.removeChild( div );
|
||||
});
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user