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
This commit is contained in:
parent
2cabe7aef1
commit
5c86bfd201
|
@ -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 ) {
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue