woocommerce-paypal-payments/modules/ppcp-wc-gateway/resources/js/common.js

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);
}
);