mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 18:16:38 +08:00
13 lines
382 B
JavaScript
13 lines
382 B
JavaScript
// This function is needed because WordPress moves our custom notices to the global placeholder.
|
|
function moveWrappedElements() {
|
|
( ( $ ) => {
|
|
$( '*[data-ppcp-wrapper]' ).each( function () {
|
|
const $wrapper = $( '.' + $( this ).data( 'ppcpWrapper' ) );
|
|
if ( $wrapper.length ) {
|
|
$wrapper.append( this );
|
|
}
|
|
} );
|
|
} )( jQuery );
|
|
}
|
|
|
|
export default moveWrappedElements;
|