From 8c9c4b26989281e7cb66ef18aef578511d1d0966 Mon Sep 17 00:00:00 2001 From: Weston Ruter Date: Wed, 9 Mar 2016 05:05:27 +0000 Subject: [PATCH] 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 --- wp-includes/js/customize-selective-refresh.js | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/js/customize-selective-refresh.js b/wp-includes/js/customize-selective-refresh.js index f533be0177..89277160cb 100644 --- a/wp-includes/js/customize-selective-refresh.js +++ b/wp-includes/js/customize-selective-refresh.js @@ -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; diff --git a/wp-includes/version.php b/wp-includes/version.php index fc0b97da76..2a13a9668d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.