From: Brandon Aaron Date: Tue, 11 Sep 2007 00:43:12 +0000 (+0000) Subject: Couple of fixes to the offset method X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;h=2608bae43818bbb3b828e35a2684d0a8a51cb5ab;p=jquery.git Couple of fixes to the offset method --- diff --git a/src/offset.js b/src/offset.js index 674338e..19090ac 100644 --- a/src/offset.js +++ b/src/offset.js @@ -55,7 +55,7 @@ jQuery.fn.offset = function() { } // Get parent scroll offsets - while ( parent.tagName && /^body|html$/i.test(parent.tagName) ) { + while ( parent.tagName && !/^body|html$/i.test(parent.tagName) ) { // Work around opera inline/table scrollLeft/Top bug if ( /^inline|table-row.*$/i.test(jQuery.css(parent, "display")) ) // Subtract parent scroll offsets @@ -70,7 +70,7 @@ jQuery.fn.offset = function() { } // Safari doubles body offsets with an absolutely positioned element or parent - if ( safari && absolute ) + if ( safari2 && absolute ) add( -doc.body.offsetLeft, -doc.body.offsetTop ); }