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,
we have the same situation that the "QWERTY Password" demo represents: the keyboard is opened by clicking on a button. (except that it has custom layout and opens in the screen center, but i think it's not relevant)
If you
click the button (the keyboard appears) -> click again the button (the keyboard disappears), click again the button, then the keyboard will never appear again.
I noticed that in the demo, the log is always stating that the keyboard is visible, even when it's disappearing due to the second button click.
I tried with both FF and Chrome.
Any one else is exepriencing tha same behaviour?
Thanks in advance,
Luigi
The text was updated successfully, but these errors were encountered:
The problem is not the same as in issue #333 where clicking on the button a second time makes the keyboard flicker by opening the keyboard a second time. This is because the keyboard has the stayOpen option set to true.
In this case, you just need to check if the keyboard is already open, then close it if it is:
$('#passwd').click(function(){varkb=$('.qwerty:eq(1)').getkeyboard();// close the keyboard if the keyboard is visible and the button is clicked a second timeif(kb.isOpen){kb.close();}else{kb.reveal();}});
I'll update the demo, and hopefully this fixes the issues you are having.
Hi,
we have the same situation that the "QWERTY Password" demo represents: the keyboard is opened by clicking on a button. (except that it has custom layout and opens in the screen center, but i think it's not relevant)
If you
click the button (the keyboard appears) -> click again the button (the keyboard disappears), click again the button, then the keyboard will never appear again.
I noticed that in the demo, the log is always stating that the keyboard is visible, even when it's disappearing due to the second button click.
I tried with both FF and Chrome.
Any one else is exepriencing tha same behaviour?
Thanks in advance,
Luigi
The text was updated successfully, but these errors were encountered: