woocommerce-paypal-payments/modules/ppcp-button/resources/js/modules/Helper/Spinner.js
Emili Castells Guasch 11105d913b Run eslint autofix
2024-07-12 12:58:34 +02:00

25 lines
366 B
JavaScript

class Spinner {
constructor( target = 'form.woocommerce-checkout' ) {
this.target = target;
}
setTarget( target ) {
this.target = target;
}
block() {
jQuery( this.target ).block( {
message: null,
overlayCSS: {
background: '#fff',
opacity: 0.6,
},
} );
}
unblock() {
jQuery( this.target ).unblock();
}
}
export default Spinner;