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

11 lines
270 B
JavaScript
Raw Normal View History

import moveWrappedElements from "./common/wrapped-elements";
document.addEventListener(
'DOMContentLoaded',
() => {
// Wait for current execution context to end.
setTimeout(function () {
moveWrappedElements();
}, 0);
}
);