Customize: Remove unused JS variable to fix jshint error introduced in [36890].

See #36164.

Built from https://develop.svn.wordpress.org/trunk@36892


git-svn-id: http://core.svn.wordpress.org/trunk@36859 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Weston Ruter 2016-03-09 05:05:27 +00:00
parent 1e120a01ec
commit 8c9c4b2698
2 changed files with 2 additions and 2 deletions

View File

@ -255,7 +255,7 @@ wp.customize.selectiveRefresh = ( function( $, api ) {
* @returns {boolean} Whether the rendering was successful and the fallback was not invoked.
*/
renderContent: function( placement ) {
var partial = this, content, newContainerElement, errorMessageElement;
var partial = this, content, newContainerElement;
if ( ! placement.container ) {
partial.fallback( new Error( 'no_container' ), [ placement ] );
return false;

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.5-beta2-36891';
$wp_version = '4.5-beta2-36892';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.