Skip to content

Commit

Permalink
Address issue #891
Browse files Browse the repository at this point in the history
Revert to alpha version
  • Loading branch information
Mesuva committed Sep 2, 2024
1 parent b5b9af9 commit 9df15d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class Controller extends Package implements ProviderAggregateInterface
{
protected $pkgHandle = 'community_store';
protected $appVersionRequired = '8.5';
protected $pkgVersion = '2.7.1';
protected $pkgVersion = '2.7.2-alpha1';

protected $npmPackages = [
'sysend' => '1.3.4',
Expand Down
4 changes: 2 additions & 2 deletions js/communityStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ $(document).ready(function () {

if ($('#store-copy-billing').is(":checked")) {
communityStore.copyBillingToShipping();
$("#store-checkout-form-group-shipping").submit();
$("#store-checkout-form-group-shipping").trigger('submit');
$('#store-copy-billing').prop('checked', false)
} else {
$(".store-whiteout").remove();
Expand Down Expand Up @@ -841,7 +841,7 @@ $(document).ready(function () {

$('#store-cart .store-btn-cart-list-remove').click(function(e) {
$('#deleteform input[name=instance]').val($(this).data('instance'));
$('#deleteform').submit();
$('#deleteform').trigger('submit');
e.preventDefault();
});

Expand Down

0 comments on commit 9df15d9

Please sign in to comment.