fix: stopPropagation on floating button click to prevent Shoptimizer document handler closing cart

This commit is contained in:
2026-03-05 08:20:37 +01:00
parent 2b565758f5
commit ffc97228b7
2 changed files with 6 additions and 2 deletions

View File

@@ -45,6 +45,10 @@
// --- Floating button click → open minicart -----------------------
this.$btn.on( 'click', function ( e ) {
e.preventDefault();
// Stop the click bubbling to document-level handlers.
// Shoptimizer closes the cart on any click outside .shoptimizer-cart,
// so without this the cart would open then instantly close again.
e.stopPropagation();
self.openMinicart();
} );