peterbe / autocompeter

A really fast AJAX autocomplete service and widget
https://autocompeter.com
Mozilla Public License 2.0
276 stars 19 forks source link

Require two clicks on Chrome Android #19

Open bast44 opened 8 years ago

bast44 commented 8 years ago

It looks that click event is not being fired when virtual keyboard is open. This issue appears also on project hompage.

bast44 commented 8 years ago

I patched the issue by replacing

attachHandler(q, 'input', handler); to attachHandler(q, 'keyup', handler);

for mobile & tablet clients.

BTW great work!