minicart icon indicating copy to clipboard operation
minicart copied to clipboard

Amount change in cart dialog doesn't fire an event

Open aviemet opened this issue 10 years ago • 2 comments

When changing the amount of an item in the cart dialog box, no events are fired. Upon leaving the input, a higher amount should fire and add event and a lower amount should fire a remove event.

aviemet avatar Dec 12 '14 18:12 aviemet

I agree. Is there any work around this?

fabriziotappero avatar Apr 12 '15 20:04 fabriziotappero

there is change event that fires when you manually change item amount

paypal.minicart.cart.on('change', function(event) {
  console.log(1);
});

gosteev avatar Feb 27 '16 01:02 gosteev