From: Brandon Aaron Date: Mon, 17 Dec 2007 14:37:26 +0000 (+0000) Subject: Fixed #2064 X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;h=d7f5a0835bc463d15a4f6210e48110054a050f0b;hp=13a5fdb6a1571012c3e065a991fb4eff083057fb;p=jquery.git Fixed #2064 --- diff --git a/src/offset.js b/src/offset.js index 46b971b..11a187e 100644 --- a/src/offset.js +++ b/src/offset.js @@ -72,7 +72,7 @@ jQuery.fn.offset = function() { // Safari <= 2 doubles body offsets with a fixed position element/offsetParent or absolutely positioned offsetChild // Mozilla doubles body offsets with a non-absolutely positioned offsetChild if ( (safari2 && (fixed || jQuery.css(offsetChild, "position") == "absolute")) || - (mozilla && jQuery.css(offsetChild, "position") != "absoltue") ) + (mozilla && jQuery.css(offsetChild, "position") != "absolute") ) add( -doc.body.offsetLeft, -doc.body.offsetTop ); // Add the document scroll offsets if position is fixed