diff options
Diffstat (limited to 'src/offset.js')
-rw-r--r-- | src/offset.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/offset.js b/src/offset.js index 45a4a7fa8..386109506 100644 --- a/src/offset.js +++ b/src/offset.js @@ -60,7 +60,8 @@ jQuery.offset = { curOffset = curElem.offset(); curCSSTop = jQuery.css( elem, "top" ); curCSSLeft = jQuery.css( elem, "left" ); - calculatePosition = ( position === "absolute" || position === "fixed" ) && ( curCSSTop + curCSSLeft ).indexOf("auto") > -1; + calculatePosition = ( position === "absolute" || position === "fixed" ) && + ( curCSSTop + curCSSLeft ).indexOf("auto") > -1; // Need to be able to calculate position if either top or left is auto and position is either absolute or fixed if ( calculatePosition ) { |