Merge pull request #23066 from woocommerce/fix/23055
preventDefault when dismissing store notices
This commit is contained in:
commit
81a4b81e7c
|
@ -25,9 +25,10 @@ jQuery( function( $ ) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set a cookie and hide the store notice when the dismiss button is clicked
|
// Set a cookie and hide the store notice when the dismiss button is clicked
|
||||||
$( '.woocommerce-store-notice__dismiss-link' ).click( function() {
|
$( '.woocommerce-store-notice__dismiss-link' ).click( function( event ) {
|
||||||
Cookies.set( cookieName, 'hidden', { path: '/' } );
|
Cookies.set( cookieName, 'hidden', { path: '/' } );
|
||||||
$( '.woocommerce-store-notice' ).hide();
|
$( '.woocommerce-store-notice' ).hide();
|
||||||
|
event.preventDefault();
|
||||||
});
|
});
|
||||||
|
|
||||||
// Make form field descriptions toggle on focus.
|
// Make form field descriptions toggle on focus.
|
||||||
|
|
Loading…
Reference in New Issue