Skip to content
This repository was archived by the owner on Jul 3, 2024. It is now read-only.

Commit 36fb18d

Browse files
jsLint cleanup
1 parent cbfa7f6 commit 36fb18d

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/eCSStender.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2510,13 +2510,13 @@ License: MIT License (see homepage)
25102510
return _body.clientWidth +
25112511
convertToPixels( getCSSValue( _body, 'margin-left' ) ) +
25122512
convertToPixels( getCSSValue( _body, 'margin-right' ) );
2513-
}
2513+
};
25142514
if ( defined( WINDOW.innerHeight ) )
25152515
{
25162516
getHeight = function()
25172517
{
25182518
return WINDOW.innerHeight;
2519-
}
2519+
};
25202520
}
25212521
else if ( defined( DOCUMENT.documentElement ) &&
25222522
defined( DOCUMENT.documentElement.clientHeight ) &&
@@ -2525,14 +2525,14 @@ License: MIT License (see homepage)
25252525
getHeight = function()
25262526
{
25272527
return document.documentElement.clientHeight;
2528-
}
2528+
};
25292529
}
25302530
else
25312531
{
25322532
getHeight = function()
25332533
{
25342534
return getElements(BODY)[0].clientHeight;
2535-
}
2535+
};
25362536
}
25372537
/* Method */
25382538
matchMedia = function( query )
@@ -2555,12 +2555,12 @@ License: MIT License (see homepage)
25552555
}
25562556
}
25572557
//isInheritedProperty( obj, prop )
2558-
queries = query.split(' and '), // split the query into each condition
2559-
matches = TRUE, // optimism
2560-
mediaQueryRegex = newRegExp(REGEXP_MQ_PARENS),
2561-
W = getWidth(),
2562-
DW = SCREEN.width,
2563-
H = getHeight(),
2558+
queries = query.split(' and '); // split the query into each condition
2559+
matches = TRUE; // optimism
2560+
mediaQueryRegex = newRegExp(REGEXP_MQ_PARENS);
2561+
W = getWidth();
2562+
DW = SCREEN.width;
2563+
H = getHeight();
25642564
DH = SCREEN.height;
25652565
i = queries.length;
25662566
while ( i-- )

0 commit comments

Comments
 (0)