From 5c86bfd20185dcd8ecbeb54bbf43533a84afd75d Mon Sep 17 00:00:00 2001 From: Andrea Fercia Date: Thu, 17 Nov 2016 09:04:31 +0000 Subject: [PATCH] Small coding standards cleanup of wp-custom-header.js. Small coding standards cleanup of wp-custom-header.js after [39272]. Built from https://develop.svn.wordpress.org/trunk@39277 git-svn-id: http://core.svn.wordpress.org/trunk@39217 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/js/wp-custom-header.js | 6 +++--- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-includes/js/wp-custom-header.js b/wp-includes/js/wp-custom-header.js index 929e6cf02a..b2979f12e8 100644 --- a/wp-includes/js/wp-custom-header.js +++ b/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 ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 64e6ed935d..e8461bbbc0 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-beta4-39276'; +$wp_version = '4.7-beta4-39277'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.