diff options
author | timmywil <timmywillisn@gmail.com> | 2011-10-31 12:33:55 -0400 |
---|---|---|
committer | timmywil <timmywillisn@gmail.com> | 2011-10-31 12:33:55 -0400 |
commit | 83a355a9a06c03eeb4e601dbe204909d273c91b5 (patch) | |
tree | 7784ae6f9a97467e4142f288a763c0dcd5e9a4ca /src/offset.js | |
parent | cec4018d0e5249203aaba203cd67147a1162b435 (diff) | |
download | jquery-83a355a9a06c03eeb4e601dbe204909d273c91b5.tar.gz jquery-83a355a9a06c03eeb4e601dbe204909d273c91b5.zip |
jQuery.support.supportsFixedPosition -> jQuery.support.fixedPosition; Remove jQuery.offset.supportProps and reference support in offset
Diffstat (limited to 'src/offset.js')
-rw-r--r-- | src/offset.js | 24 |
1 files changed, 7 insertions, 17 deletions
diff --git a/src/offset.js b/src/offset.js index 054869da6..ad10236f6 100644 --- a/src/offset.js +++ b/src/offset.js @@ -75,7 +75,7 @@ if ( "getBoundingClientRect" in document.documentElement ) { left = elem.offsetLeft; while ( (elem = elem.parentNode) && elem !== body && elem !== docElem ) { - if ( jQuery.offset.supportsFixedPosition && prevComputedStyle.position === "fixed" ) { + if ( jQuery.support.fixedPosition && prevComputedStyle.position === "fixed" ) { break; } @@ -87,7 +87,7 @@ if ( "getBoundingClientRect" in document.documentElement ) { top += elem.offsetTop; left += elem.offsetLeft; - if ( jQuery.offset.doesNotAddBorder && !(jQuery.offset.doesAddBorderForTableAndCells && rtable.test(elem.nodeName)) ) { + if ( jQuery.support.doesNotAddBorder && !(jQuery.support.doesAddBorderForTableAndCells && rtable.test(elem.nodeName)) ) { top += parseFloat( computedStyle.borderTopWidth ) || 0; left += parseFloat( computedStyle.borderLeftWidth ) || 0; } @@ -96,7 +96,7 @@ if ( "getBoundingClientRect" in document.documentElement ) { offsetParent = elem.offsetParent; } - if ( jQuery.offset.subtractsBorderForOverflowNotVisible && computedStyle.overflow !== "visible" ) { + if ( jQuery.support.subtractsBorderForOverflowNotVisible && computedStyle.overflow !== "visible" ) { top += parseFloat( computedStyle.borderTopWidth ) || 0; left += parseFloat( computedStyle.borderLeftWidth ) || 0; } @@ -109,7 +109,7 @@ if ( "getBoundingClientRect" in document.documentElement ) { left += body.offsetLeft; } - if ( jQuery.offset.supportsFixedPosition && prevComputedStyle.position === "fixed" ) { + if ( jQuery.support.fixedPosition && prevComputedStyle.position === "fixed" ) { top += Math.max( docElem.scrollTop, body.scrollTop ); left += Math.max( docElem.scrollLeft, body.scrollLeft ); } @@ -118,23 +118,13 @@ if ( "getBoundingClientRect" in document.documentElement ) { }; } -jQuery.offset = {}; - -jQuery.each( - ( "doesAddBorderForTableAndCells doesNotAddBorder " + - "doesNotIncludeMarginInBodyOffset subtractsBorderForOverflowNotVisible " + - "supportsFixedPosition" ).split(" "), function( i, prop ) { - - jQuery.offset[ prop ] = jQuery.support[ prop ]; -}); - -jQuery.extend( jQuery.offset, { +jQuery.offset = { bodyOffset: function( body ) { var top = body.offsetTop, left = body.offsetLeft; - if ( jQuery.offset.doesNotIncludeMarginInBodyOffset ) { + if ( jQuery.support.doesNotIncludeMarginInBodyOffset ) { top += parseFloat( jQuery.css(body, "marginTop") ) || 0; left += parseFloat( jQuery.css(body, "marginLeft") ) || 0; } @@ -184,7 +174,7 @@ jQuery.extend( jQuery.offset, { curElem.css( props ); } } -}); +}; jQuery.fn.extend({ |