| Conditions | 2 |
| Paths | 2 |
| Total Lines | 20 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | /** |
||
| 21 | value.bind( function( to ) { |
||
| 22 | if ( 'blank' === to ) { |
||
| 23 | $( '.site-title, .site-description' ).css( { |
||
| 24 | 'clip': 'rect(1px, 1px, 1px, 1px)', |
||
| 25 | 'position': 'absolute' |
||
| 26 | } ); |
||
| 27 | } else { |
||
| 28 | $( '.site-title, .site-description' ).css( { |
||
| 29 | 'clip': 'auto', |
||
| 30 | 'position': 'static' |
||
| 31 | } ); |
||
| 32 | |||
| 33 | $( '.site-title a, .site-description' ).css( { |
||
| 34 | 'color': to |
||
| 35 | } ); |
||
| 36 | $( '.site-title a' ).css( { |
||
| 37 | 'border-color': to |
||
| 38 | } ); |
||
| 39 | } |
||
| 40 | } ); |
||
| 41 | } ); |
||
| 43 |
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.