From bab641a113dce7638bd17ea2eb0675abf0daa6ba Mon Sep 17 00:00:00 2001 From: Rick Waldron Date: Mon, 18 Jun 2012 13:28:47 -0400 Subject: [PATCH] Fix comment block indents Signed-off-by: Rick Waldron --- src/support.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/support.js b/src/support.js index 334175ff6..612e2942b 100644 --- a/src/support.js +++ b/src/support.js @@ -211,10 +211,10 @@ jQuery.support = (function() { support.boxSizing = ( div.offsetWidth === 4 ); support.doesNotIncludeMarginInBodyOffset = ( body.offsetTop !== 1 ); - // NOTE: To any future maintainer, window.getComputedStyle was used here - // instead of getComputedStyle because it gave a better gzip size. - // The difference between window.getComputedStyle and getComputedStyle is - // 7 bytes + // NOTE: To any future maintainer, window.getComputedStyle was used here + // instead of getComputedStyle because it gave a better gzip size. + // The difference between window.getComputedStyle and getComputedStyle is + // 7 bytes if ( window.getComputedStyle ) { support.pixelMargin = ( window.getComputedStyle( div, null ) || {} ).marginTop !== "1%"; support.pixelPosition = ( window.getComputedStyle( div, null ) || {} ).top !== "1%"; -- 2.39.5