mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 14:20:15 +00:00
Customizer: Don’t always set normalizedTransitionendEventName to null.
Reverts [51389]. Unprops mikeschroder. See #53562. git-svn-id: https://develop.svn.wordpress.org/trunk@51417 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
2
src/js/_enqueues/wp/customize/controls.js
vendored
2
src/js/_enqueues/wp/customize/controls.js
vendored
@@ -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 ];
|
||||
|
||||
Reference in New Issue
Block a user