From af66f0b03e04128ee8c9571b072d22cd7f4f2881 Mon Sep 17 00:00:00 2001 From: Weston Ruter Date: Tue, 18 Jul 2017 22:35:47 +0000 Subject: [PATCH] Widgets: Check for existence of `wp.customize.state` before attempting to access in Text widget. Amends [40631]. See #35243. Fixes #41361 for trunk. git-svn-id: https://develop.svn.wordpress.org/trunk@41088 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/js/widgets/text-widgets.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/js/widgets/text-widgets.js b/src/wp-admin/js/widgets/text-widgets.js index c8022df501..1d3b51eb0b 100644 --- a/src/wp-admin/js/widgets/text-widgets.js +++ b/src/wp-admin/js/widgets/text-widgets.js @@ -285,7 +285,7 @@ wp.textWidgets = ( function( $ ) { * having to make server round-trips to call the respective WP_Widget::update() * callbacks. See . */ - if ( wp.customize ) { + if ( wp.customize && wp.customize.state ) { wp.customize.state( 'processing' ).set( wp.customize.state( 'processing' ).get() + 1 ); _.delay( function() { wp.customize.state( 'processing' ).set( wp.customize.state( 'processing' ).get() - 1 );