Adding a tweak to prevent layout breaks in the boxModel check on IE 6. Fixes bug #4014.

This commit is contained in:
John Resig 2009-02-07 17:15:01 +00:00
parent a894c60489
commit 31597b7b3c

View file

@ -88,12 +88,11 @@
// document.body must exist before we can do this
jQuery(function(){
var div = document.createElement("div");
div.style.width = "1px";
div.style.paddingLeft = "1px";
div.style.width = div.style.paddingLeft = "1px";
document.body.appendChild( div );
jQuery.boxModel = jQuery.support.boxModel = div.offsetWidth === 2;
document.body.removeChild( div );
document.body.removeChild( div ).style.display = 'none';
});
})();