Mottie / Keyboard

Virtual Keyboard using jQuery ~
http://mottie.github.io/Keyboard/
Other
1.78k stars 723 forks source link

There is a mistakenly touch on the touch screen #688

Closed liijuu closed 6 years ago

liijuu commented 6 years ago

When the keyboard is popped up, if the keyboard is underneath the finger, a click operation will be triggered.

Mottie commented 6 years ago

Hi @liijuu!

I'm not exactly sure what you're describing here. A "click" event is triggered? On the button? What happens? What did you expect to happen? What needs to be fixed?

Internally, the code is set up to ignore "click" events.

Things only happen on "mousedown" and "touchstart" by default (see the keyBinding option). The opposite events of "mouseup", "mouseleave", "touchend", "touchmove" (if moved outside of the current key), and "touchcancel" does stuff like re-focus the input, position the caret and check the input validation, if enabled.

If possible, please modify this demo to show the problem.

Mottie commented 6 years ago

Also, are you using any extensions?