Adding a tweak to prevent layout breaks in the boxModel check on IE 6. Fixes bug #4014.
This commit is contained in:
parent
a894c60489
commit
31597b7b3c
|
@ -88,12 +88,11 @@
|
||||||
// document.body must exist before we can do this
|
// document.body must exist before we can do this
|
||||||
jQuery(function(){
|
jQuery(function(){
|
||||||
var div = document.createElement("div");
|
var div = document.createElement("div");
|
||||||
div.style.width = "1px";
|
div.style.width = div.style.paddingLeft = "1px";
|
||||||
div.style.paddingLeft = "1px";
|
|
||||||
|
|
||||||
document.body.appendChild( div );
|
document.body.appendChild( div );
|
||||||
jQuery.boxModel = jQuery.support.boxModel = div.offsetWidth === 2;
|
jQuery.boxModel = jQuery.support.boxModel = div.offsetWidth === 2;
|
||||||
document.body.removeChild( div );
|
document.body.removeChild( div ).style.display = 'none';
|
||||||
});
|
});
|
||||||
})();
|
})();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue