woocommerce-paypal-payments/modules/ppcp-googlepay/resources/js/boot-admin.js
2024-07-12 17:32:59 +02:00

16 lines
450 B
JavaScript

import GooglePayPreviewButtonManager from './Preview/GooglePayPreviewButtonManager';
/**
* Accessor that creates and returns a single PreviewButtonManager instance.
*/
const buttonManager = () => {
if ( ! GooglePayPreviewButtonManager.instance ) {
GooglePayPreviewButtonManager.instance =
new GooglePayPreviewButtonManager();
}
return GooglePayPreviewButtonManager.instance;
};
// Initialize the preview button manager.
buttonManager();