Index: src/wp-content/themes/twentyfourteen/js/functions.js
===================================================================
--- src/wp-content/themes/twentyfourteen/js/functions.js	(revision 26175)
+++ src/wp-content/themes/twentyfourteen/js/functions.js	(working copy)
@@ -1,9 +1,9 @@
-( function( $ ) {
-	var body    = $( 'body' ),
-	    _window = $( window );
+(function( $ ) {
+	var body	= $( 'body' ),
+		_window = $( window );
 
 	// Enable menu toggle for small screens.
-	( function() {
+	(function() {
 		var nav = $( '#primary-navigation' ), button, menu;
 		if ( ! nav ) {
 			return;
@@ -23,8 +23,8 @@
 
 		$( '.menu-toggle' ).on( 'click.twentyfourteen', function() {
 			nav.toggleClass( 'toggled-on' );
-		} );
-	} )();
+		});
+	})();
 
 	/*
 	 * Makes "skip to content" link work correctly in IE9 and Chrome for better
@@ -42,13 +42,13 @@
 
 			element.focus();
 		}
-	} );
+	});
 
 	$( function() {
 		// Search toggle.
 		$( '.search-toggle' ).on( 'click.twentyfourteen', function() {
-			var that    = $( this ),
-			    wrapper = $( '.search-box-wrapper' );
+			var that	= $( this ),
+				wrapper = $( '.search-box-wrapper' );
 
 			that.toggleClass( 'active' );
 			wrapper.toggleClass( 'hide' );
@@ -56,7 +56,7 @@
 			if ( that.is( '.active' ) ) {
 				wrapper.find( '.search-field' ).focus();
 			}
-		} );
+		});
 
 		/*
 		 * Fixed header for large screen.
@@ -65,7 +65,7 @@
 		 * The callback on the scroll event is only added if there is a header
 		 * image and we are not on mobile.
 		 */
-		 if ( _window.width() > 781 ) {
+		if ( _window.width() > 781 ) {
 			var mastheadHeight = $( '#masthead' ).height(),
 				toolbarOffset, mastheadOffset;
 
@@ -83,36 +83,36 @@
 					} else {
 						body.removeClass( 'masthead-fixed' );
 					}
-				} );
+				});
 			}
 		}
 
 		// Focus styles for menus.
 		$( '.primary-navigation, .secondary-navigation' ).find( 'a' ).on( 'focus.twentyfourteen blur.twentyfourteen', function() {
 			$( this ).parents().toggleClass( 'focus' );
-		} );
+		});
 	} );
 
 	// Arrange footer widgets vertically.
 	if ( $.isFunction( $.fn.masonry ) ) {
-		$( '#footer-sidebar' ).masonry( {
+		$( '#footer-sidebar' ).masonry({
 			itemSelector: '.widget',
-			columnWidth: function( containerWidth ) {
+			columnWidth:  function( containerWidth ) {
 				return containerWidth / 4;
 			},
-			gutterWidth: 0,
-			isResizable: true,
-			isRTL: $( 'body' ).is( '.rtl' )
-		} );
+			gutterWidth:  0,
+			isResizable:  true,
+			isRTL:        $( 'body' ).is( '.rtl' )
+		});
 	}
 
 	// Initialize Featured Content slider.
-	_window.load( function() {
+	_window.load(function() {
 		if ( body.is( '.slider' ) ) {
-			$( '.featured-content' ).featuredslider( {
-				selector:  '.featured-content-inner > article',
+			$( '.featured-content' ).featuredslider({
+				selector:          '.featured-content-inner > article',
 				controlsContainer: '.featured-content'
-			} );
+			});
 		}
-	} );
-} )( jQuery );
+	});
+})( jQuery );
