From b2983232c30954a85407c7f1f05c1601074f415f Mon Sep 17 00:00:00 2001 From: Andrea Fercia Date: Thu, 17 Nov 2016 09:03:39 +0000 Subject: [PATCH] Small coding standards cleanup of wp-custom-header.js. Small coding standards cleanup of wp-custom-header.js after [39272]. git-svn-id: https://develop.svn.wordpress.org/trunk@39277 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/js/wp-custom-header.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wp-includes/js/wp-custom-header.js b/src/wp-includes/js/wp-custom-header.js index 929e6cf02a..b2979f12e8 100644 --- a/src/wp-includes/js/wp-custom-header.js +++ b/src/wp-includes/js/wp-custom-header.js @@ -1,5 +1,5 @@ /* global YT */ -( function( window, settings ) { +(function( window, settings ) { var NativeHandler, YouTubeHandler; @@ -106,7 +106,7 @@ button = document.createElement( 'button' ); this.settings = settings; - this.container = document.getElementById( 'wp-custom-header' ), + this.container = document.getElementById( 'wp-custom-header' ); this.button = button; button.setAttribute( 'type', 'button' ); @@ -228,7 +228,7 @@ /** * Create a custom handler. * - * @param {object} protoProps Properties to apply to the prototype. + * @param {object} protoProps Properties to apply to the prototype. * @return CustomHandler The subclass. */ BaseHandler.extend = function( protoProps ) {