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:
Andrea Fercia 2016-11-17 09:03:39 +00:00
parent a3b66814a7
commit b2983232c3
1 changed files with 3 additions and 3 deletions

View File

@ -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 ) {