Skip to content

Commit bab641a

Browse files
committed
Fix comment block indents
Signed-off-by: Rick Waldron <[email protected]>
1 parent f7ee1f6 commit bab641a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/support.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -211,10 +211,10 @@ jQuery.support = (function() {
211211
support.boxSizing = ( div.offsetWidth === 4 );
212212
support.doesNotIncludeMarginInBodyOffset = ( body.offsetTop !== 1 );
213213

214-
// NOTE: To any future maintainer, window.getComputedStyle was used here
215-
// instead of getComputedStyle because it gave a better gzip size.
216-
// The difference between window.getComputedStyle and getComputedStyle is
217-
// 7 bytes
214+
// NOTE: To any future maintainer, window.getComputedStyle was used here
215+
// instead of getComputedStyle because it gave a better gzip size.
216+
// The difference between window.getComputedStyle and getComputedStyle is
217+
// 7 bytes
218218
if ( window.getComputedStyle ) {
219219
support.pixelMargin = ( window.getComputedStyle( div, null ) || {} ).marginTop !== "1%";
220220
support.pixelPosition = ( window.getComputedStyle( div, null ) || {} ).top !== "1%";

0 commit comments

Comments
 (0)