Skip to content

Commit

Permalink
Merge pull request #676 from alphagov/bind-input-click
Browse files Browse the repository at this point in the history
Fix binding of `handleInputClick`
  • Loading branch information
romaricpascal committed Mar 11, 2024
2 parents 23c90ee + 2360f46 commit eabbb03
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dist/accessible-autocomplete.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/accessible-autocomplete.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/lib/accessible-autocomplete.preact.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/lib/accessible-autocomplete.preact.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/lib/accessible-autocomplete.react.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/lib/accessible-autocomplete.react.min.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/autocomplete.js
Expand Up @@ -90,6 +90,7 @@ export default class Autocomplete extends Component {

this.handleInputBlur = this.handleInputBlur.bind(this)
this.handleInputChange = this.handleInputChange.bind(this)
this.handleInputClick = this.handleInputClick.bind(this)
this.handleInputFocus = this.handleInputFocus.bind(this)

this.pollInputElement = this.pollInputElement.bind(this)
Expand Down

0 comments on commit eabbb03

Please sign in to comment.