This repository was archived by the owner on Jul 3, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -2510,13 +2510,13 @@ License: MIT License (see homepage)
2510
2510
return _body . clientWidth +
2511
2511
convertToPixels ( getCSSValue ( _body , 'margin-left' ) ) +
2512
2512
convertToPixels ( getCSSValue ( _body , 'margin-right' ) ) ;
2513
- }
2513
+ } ;
2514
2514
if ( defined ( WINDOW . innerHeight ) )
2515
2515
{
2516
2516
getHeight = function ( )
2517
2517
{
2518
2518
return WINDOW . innerHeight ;
2519
- }
2519
+ } ;
2520
2520
}
2521
2521
else if ( defined ( DOCUMENT . documentElement ) &&
2522
2522
defined ( DOCUMENT . documentElement . clientHeight ) &&
@@ -2525,14 +2525,14 @@ License: MIT License (see homepage)
2525
2525
getHeight = function ( )
2526
2526
{
2527
2527
return document . documentElement . clientHeight ;
2528
- }
2528
+ } ;
2529
2529
}
2530
2530
else
2531
2531
{
2532
2532
getHeight = function ( )
2533
2533
{
2534
2534
return getElements ( BODY ) [ 0 ] . clientHeight ;
2535
- }
2535
+ } ;
2536
2536
}
2537
2537
/* Method */
2538
2538
matchMedia = function ( query )
@@ -2555,12 +2555,12 @@ License: MIT License (see homepage)
2555
2555
}
2556
2556
}
2557
2557
//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 ( ) ;
2564
2564
DH = SCREEN . height ;
2565
2565
i = queries . length ;
2566
2566
while ( i -- )
You can’t perform that action at this time.
0 commit comments