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

See #36164.


git-svn-id: https://develop.svn.wordpress.org/trunk@36892 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Weston Ruter 2016-03-09 05:04:56 +00:00
parent 134c22caab
commit 746fc0ea1f
1 changed files with 1 additions and 1 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;