]> source.dussan.org Git - jquery.git/commitdiff
Cleanup spacing in offset.js. Fixes #10601
authorRick Waldron <waldron.rick@gmail.com>
Thu, 27 Oct 2011 19:33:21 +0000 (15:33 -0400)
committerRick Waldron <waldron.rick@gmail.com>
Thu, 27 Oct 2011 19:33:21 +0000 (15:33 -0400)
src/offset.js

index 4cc87acff50b0f4f9a0d6f81a0fda5f233838c14..054869da6fbf8a2f81d54f6e556e75deae1e7664 100644 (file)
@@ -154,7 +154,7 @@ jQuery.extend( jQuery.offset, {
                        curOffset = curElem.offset(),
                        curCSSTop = jQuery.css( elem, "top" ),
                        curCSSLeft = jQuery.css( elem, "left" ),
-                       calculatePosition = (position === "absolute" || position === "fixed") && jQuery.inArray("auto", [curCSSTop, curCSSLeft]) > -1,
+                       calculatePosition = ( position === "absolute" || position === "fixed" ) && jQuery.inArray("auto", [curCSSTop, curCSSLeft]) > -1,
                        props = {}, curPosition = {}, curTop, curLeft;
 
                // need to be able to calculate position if either top or left is auto and position is either absolute or fixed
@@ -171,11 +171,11 @@ jQuery.extend( jQuery.offset, {
                        options = options.call( elem, i, curOffset );
                }
 
-               if (options.top != null) {
-                       props.top = (options.top - curOffset.top) + curTop;
+               if ( options.top != null ) {
+                       props.top = ( options.top - curOffset.top ) + curTop;
                }
-               if (options.left != null) {
-                       props.left = (options.left - curOffset.left) + curLeft;
+               if ( options.left != null ) {
+                       props.left = ( options.left - curOffset.left ) + curLeft;
                }
 
                if ( "using" in options ) {