Twenty Fourteen: fix JS lint errors in customizer.js file, see r26573.
Built from https://develop.svn.wordpress.org/trunk@26591 git-svn-id: http://core.svn.wordpress.org/trunk@26481 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c4f7821a16
commit
8ca1f4ff01
|
@ -18,7 +18,7 @@
|
|||
// Header text color.
|
||||
wp.customize( 'header_textcolor', function( value ) {
|
||||
value.bind( function( to ) {
|
||||
if ( 'blank' == to ) {
|
||||
if ( 'blank' === to ) {
|
||||
$( '.site-title a, .site-description' ).css( {
|
||||
'clip': 'rect(1px, 1px, 1px, 1px)',
|
||||
'position': 'absolute'
|
||||
|
@ -30,7 +30,7 @@
|
|||
} );
|
||||
|
||||
$( '.site-title a' ).css( {
|
||||
'color': to,
|
||||
'color': to
|
||||
} );
|
||||
}
|
||||
} );
|
||||
|
|
Loading…
Reference in New Issue