Open
Description
Keyboard is very cool 3rd party lib.
If I use together with terminal on Android smartphone when I press a key default input keyboard pops up. Therefore keyboard is not really usable for inputting.
How can I disable input from keyboard/Android input keyboard and only accept input via keyboard event?
I tried
if (Modernizr.touch) {
$('#term').attr('readonly', 'readonly');
}
but it does not make what I want.
Activity