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