From: Rick Waldron Date: Mon, 18 Jun 2012 17:28:47 +0000 (-0400) Subject: Fix comment block indents X-Git-Tag: 1.8b1~25 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=bab641a113dce7638bd17ea2eb0675abf0daa6ba;p=jquery.git Fix comment block indents Signed-off-by: Rick Waldron --- 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%";