Skip to content
This repository has been archived by the owner on Apr 22, 2019. It is now read-only.

Commit

Permalink
Merge branch 'release/1.3.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Sisco committed Feb 14, 2018
2 parents 5a9e462 + f008dde commit e84bb2b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 1.3.4 (2018-02-14)

* Fix problem where customer can't save edited address in address book [#110](https://github.com/classyllama/ClassyLlama_AvaTax/issues/110)

### 1.3.3 (2018-02-12)

* Fix problem where customer can't save address in address book when address validation is disabled [#108](https://github.com/classyllama/ClassyLlama_AvaTax/issues/108)
Expand Down
2 changes: 1 addition & 1 deletion Framework/AppInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ interface AppInterface
/**
* If this is updated it must also be updated in composer.json
*/
const APP_VERSION = '1.3.3';
const APP_VERSION = '1.3.4';
}
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "classyllama/module-avatax",
"type": "magento2-module",
"version": "1.3.3",
"version": "1.3.4",
"license": "OSL-3.0",
"require": {
"magento/framework": "^100.1.0|101.0.*",
Expand Down
5 changes: 5 additions & 0 deletions view/frontend/web/js/view/address-validation-modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ define([
text: $.mage.__('Edit Address'),
class: 'action-secondary action-dismiss',
click: function () {
this.enableSubmit($(this.formSelector));
this.closeModal();
}
},
Expand Down Expand Up @@ -125,6 +126,10 @@ define([
}
}
});
},

enableSubmit: function (form) {
$(form).find("[type=submit]").prop("disabled", false);
}
});

Expand Down

0 comments on commit e84bb2b

Please sign in to comment.