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
This commit is contained in:
parent
a3b66814a7
commit
b2983232c3
@ -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 ) {
|
||||
|
Loading…
Reference in New Issue
Block a user