Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // listener
  2. $('.cart-component--cart-item .quantity-component--input').on('quantity-component:update-value', function() {
  3.     _this.updateProductQuantity.call( this );
  4. });
  5.  
  6.  
  7. // function
  8. updateProductQuantity: function() {
  9.     $(this).parents('form').submit();
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement