mdbootstrap / bootstrap-templates

A collection of free Bootstrap 5 templates.
https://mdbootstrap.com/freebies/
3.07k stars 1.02k forks source link

Space as confirm key on Android (keypress) #647

Closed PlanetPush closed 2 years ago

PlanetPush commented 6 years ago

On Android the space key (ASCII code 32) will not act as a confirm key (but the "comma" and the "Enter" key will)

confirmKeys: [13, 44, 32]

It appears that the keypress event does not get handled by Android and the keyup event returns 229 for every character.

This is the tool used that I used to check the situation on Android: https://unixpapa.com/js/testkey.html

Any thoughts?