Customizer: Don’t always set normalizedTransitionendEventName to null.

Reverts [51389].

Unprops mikeschroder.
See #53562.


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


git-svn-id: http://core.svn.wordpress.org/trunk@51028 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Mike Schroder 2021-07-13 14:04:57 +00:00
parent 8ed1859c35
commit b95e0b391c
3 changed files with 3 additions and 3 deletions

View File

@ -906,7 +906,7 @@
'WebkitTransition': 'webkitTransitionEnd'
};
prop = _.find( _.keys( transitions ), function( prop ) {
return ! _.isUndefined( el.style[ prop ] ) && ! _.isEmpty( el.style[ prop ] );
return ! _.isUndefined( el.style[ prop ] );
} );
if ( prop ) {
return transitions[ prop ];

File diff suppressed because one or more lines are too long

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.9-alpha-51415';
$wp_version = '5.9-alpha-51417';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.