mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-31 04:58:28 +08:00
10 lines
270 B
JavaScript
10 lines
270 B
JavaScript
import moveWrappedElements from "./common/wrapped-elements";
|
|
document.addEventListener(
|
|
'DOMContentLoaded',
|
|
() => {
|
|
// Wait for current execution context to end.
|
|
setTimeout(function () {
|
|
moveWrappedElements();
|
|
}, 0);
|
|
}
|
|
);
|