Skip to content

Commit

Permalink
Fixed disabled state not getting removed
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertPeek committed Jan 14, 2022
1 parent 2444d77 commit 376f6f6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ Several elements of **Text Entry** have been assigned a label using the [aria-la
No known limitations.

----------------------------
**Version number:** 5.1.0
**Version number:** 5.1.1
**Framework versions supported:** 5+
**Author / maintainer:** DeltaNet with [contributors](https://github.com/deltanet/adapt-textEntry-audio/graphs/contributors)
**Accessibility support:** yes
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "adapt-textEntry-audio",
"version": "5.1.0",
"version": "5.1.1",
"framework": ">=5",
"homepage": "https://github.com/deltanet/adapt-textEntry-audio",
"issues": "https://github.com/deltanet/adapt-textEntry-audio/issues",
Expand Down
2 changes: 1 addition & 1 deletion js/textEntryAudioView.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ define([

initFeedback: function() {
if (this.model.get('_canShowFeedback')) {
this.$('.btn__feedback').attr('disabled', false);
this.$('.btn__feedback').removeClass('is-disabled').attr('disabled', false);
this.openPopup();
} else {
this.setCompletionStatus();
Expand Down

0 comments on commit 376f6f6

Please sign in to comment.