Fix JSHint errors introduced in [30014].

props adamsilverstein.
see #29572.
Built from https://develop.svn.wordpress.org/trunk@30024


git-svn-id: http://core.svn.wordpress.org/trunk@30024 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2014-10-26 12:06:19 +00:00
parent 220213a3f9
commit ef00815a3a
3 changed files with 5 additions and 4 deletions

View File

@ -161,8 +161,9 @@
*/
renderContent: function( callback ) {
var template,
selector = 'customize-control-' + this.params.type + '-content',
callback = callback || function(){};
selector = 'customize-control-' + this.params.type + '-content';
callback = callback || function(){};
if ( 0 !== $( '#tmpl-' + selector ).length ) {
template = wp.template( selector );
if ( template && this.container ) {

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.1-alpha-30023';
$wp_version = '4.1-alpha-30024';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.