From a7fa393ef9722ecd097df482a830af5ea7aa40db Mon Sep 17 00:00:00 2001 From: Lance Willett Date: Tue, 3 Dec 2013 21:12:57 +0000 Subject: [PATCH] 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 --- src/wp-content/themes/twentyfourteen/js/customizer.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-content/themes/twentyfourteen/js/customizer.js b/src/wp-content/themes/twentyfourteen/js/customizer.js index 6c1df9314e..5a386dfb52 100644 --- a/src/wp-content/themes/twentyfourteen/js/customizer.js +++ b/src/wp-content/themes/twentyfourteen/js/customizer.js @@ -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 } ); } } );