mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-22 23:41:38 +01:00
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:
parent
8ed1859c35
commit
b95e0b391c
@ -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 ];
|
||||
|
2
wp-admin/js/customize-controls.min.js
vendored
2
wp-admin/js/customize-controls.min.js
vendored
File diff suppressed because one or more lines are too long
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user