Twenty Fourteen: fix JS lint errors in customizer.js file, see r26573.

git-svn-id: https://develop.svn.wordpress.org/trunk@26591 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Lance Willett 2013-12-03 21:12:57 +00:00
parent 57bede1005
commit a7fa393ef9
1 changed files with 2 additions and 2 deletions

View File

@ -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
} );
}
} );