mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 17:51:41 +08:00
25 lines
366 B
JavaScript
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;
|