Skip to content

Commit

Permalink
Merged in BRIQ-63_1 (pull request #41)
Browse files Browse the repository at this point in the history
BRIQ-63 fix add to cart in checkout
  • Loading branch information
sergiunwt committed Nov 18, 2022
2 parents 1047e87 + bd4e4f0 commit f030d20
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@
"Briqpay\\Checkout\\": ""
}
},
"version": "1.0.13"
"version": "1.0.14"
}
2 changes: 1 addition & 1 deletion view/frontend/web/js/checkout.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ define([
jQuery(this.options.shippingMethodLoaderSelector).on('submit', jQuery.proxy(this._loadShippingMethod, this));
}
if (!block || block == 'shipping_method') {
jQuery(this.options.shippingMethodFormSelector).find('input[type=radio]').live('change', jQuery.proxy(this._changeShippingMethod, this));
jQuery(this.options.shippingMethodFormSelector).find('input[type=radio]').on('change', jQuery.proxy(this._changeShippingMethod, this));
}
if (!block || block == 'newsletter') {
jQuery(this.options.newsletterFormSelector).find('input[type=checkbox]').on('change', jQuery.proxy(this._changeSubscriptionStatus, this));
Expand Down

0 comments on commit f030d20

Please sign in to comment.