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