mirror of
https://github.com/jquery/jquery.git
synced 2025-01-10 18:24:24 +00:00
Changed border stuff to borderTopWidth (Ticket #9)
This commit is contained in:
parent
d584a884b6
commit
d143f76973
8
jquery/jquery.js
vendored
8
jquery/jquery.js
vendored
@ -355,13 +355,13 @@ $.getCSS = function(e,p) {
|
||||
if ( p == 'height' || p == 'width' ) {
|
||||
|
||||
// Handle extra width/height provided by the W3C box model
|
||||
var ph = !$.boxModel ? 0 :
|
||||
var ph = (!$.boxModel ? 0 :
|
||||
parseInt($.css(e,"paddingTop")) + parseInt($.css(e,"paddingBottom")) +
|
||||
parseInt($.css(e,"borderTop")) + parseInt($.css(e,"borderBottom")) || 0;
|
||||
parseInt($.css(e,"borderTopWidth")) + parseInt($.css(e,"borderBottomWidth"))) || 0;
|
||||
|
||||
var pw = !$.boxModel ? 0 :
|
||||
var pw = (!$.boxModel ? 0 :
|
||||
parseInt($.css(e,"paddingLeft")) + parseInt($.css(e,"paddingRight")) +
|
||||
parseInt($.css(e,"borderLeft")) + parseInt($.css(e,"borderRight")) || 0;
|
||||
parseInt($.css(e,"borderLeftWidth")) + parseInt($.css(e,"borderRightWidth"))) || 0;
|
||||
|
||||
var oHeight, oWidth;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user