diff options
author | Rick Waldron <waldron.rick@gmail.com> | 2012-06-18 13:28:47 -0400 |
---|---|---|
committer | Rick Waldron <waldron.rick@gmail.com> | 2012-06-18 13:28:47 -0400 |
commit | bab641a113dce7638bd17ea2eb0675abf0daa6ba (patch) | |
tree | 4090ce8a0a9f854fdace98326ff9aa1ff9d056da /src/support.js | |
parent | f7ee1f6e59f0b465f5f64bf6ac52108e445efaac (diff) | |
download | jquery-bab641a113dce7638bd17ea2eb0675abf0daa6ba.tar.gz jquery-bab641a113dce7638bd17ea2eb0675abf0daa6ba.zip |
Fix comment block indents
Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
Diffstat (limited to 'src/support.js')
-rw-r--r-- | src/support.js | 8 |
1 files 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%"; |