You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
Im using this awsome script for keyboard popups. I set the "H" key for help window. My problem that if you long press "H"key the popup go crazy (show / hide evey second). I tried: $(document).ready(function(){
$(document).on('keypress',function(e){
var keyPress= String.fromCharCode(e.which);
key.unbind(keyPress);
});
});`
But it didn`t work.
what can i do to fix it?
thanks in advance
The text was updated successfully, but these errors were encountered:
Hi,
I
m using this awsome script for keyboard popups. I set the "H" key for help window. My problem that if you long press "H"key the popup go crazy (show / hide evey second). I tried:
$(document).ready(function(){$(document).on('keypress',function(e){
var keyPress= String.fromCharCode(e.which);
key.unbind(keyPress);
});
});`
But it didn`t work.
what can i do to fix it?
thanks in advance
The text was updated successfully, but these errors were encountered: