Open bast44 opened 8 years ago
It looks that click event is not being fired when virtual keyboard is open. This issue appears also on project hompage.
I patched the issue by replacing
attachHandler(q, 'input', handler); to attachHandler(q, 'keyup', handler);
attachHandler(q, 'input', handler);
attachHandler(q, 'keyup', handler);
for mobile & tablet clients.
BTW great work!
It looks that click event is not being fired when virtual keyboard is open. This issue appears also on project hompage.