Skip to content

Commit

Permalink
fixed UTF-8 characters specially on iPhone devices #344 #184 #189 (#360)
Browse files Browse the repository at this point in the history
  • Loading branch information
farzaneh authored and pawelczak committed Oct 2, 2019
1 parent 1ad753f commit 43f59d4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,8 @@ var EasyAutocomplete = (function (scope) {

default:

if (event.keyCode > 40 || event.keyCode === 8) {

if (event.keyCode > 40 || event.keyCode === 8 || event.keyCode === 0) {

var inputPhrase = $field.val();

Expand Down

0 comments on commit 43f59d4

Please sign in to comment.