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:
parent
1e120a01ec
commit
8c9c4b2698
|
@ -255,7 +255,7 @@ wp.customize.selectiveRefresh = ( function( $, api ) {
|
||||||
* @returns {boolean} Whether the rendering was successful and the fallback was not invoked.
|
* @returns {boolean} Whether the rendering was successful and the fallback was not invoked.
|
||||||
*/
|
*/
|
||||||
renderContent: function( placement ) {
|
renderContent: function( placement ) {
|
||||||
var partial = this, content, newContainerElement, errorMessageElement;
|
var partial = this, content, newContainerElement;
|
||||||
if ( ! placement.container ) {
|
if ( ! placement.container ) {
|
||||||
partial.fallback( new Error( 'no_container' ), [ placement ] );
|
partial.fallback( new Error( 'no_container' ), [ placement ] );
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue