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
First of all, thank you very much for creating this wonderful tool.
Recently, we have integrated this tool in our application and we have found one issue that if on touch screen, if we click on backspace key multiple times very fast it deletes the last character and add it again. We are using the below code to initialize the keyboard.
$("input[type='text']").keyboard({ autoaccept: true, caretToEnd: true, maxLength: 20, beforeVisible: function (e, keyboard, el) { var inModal = $(el).parents('.modal').length > 0; if (inModal) { keyboard.$keyboard.appendTo($(el).parents('.modal-content')); } } });
The text was updated successfully, but these errors were encountered:
Hello,
First of all, thank you very much for creating this wonderful tool.
Recently, we have integrated this tool in our application and we have found one issue that if on touch screen, if we click on backspace key multiple times very fast it deletes the last character and add it again. We are using the below code to initialize the keyboard.
$("input[type='text']").keyboard({ autoaccept: true, caretToEnd: true, maxLength: 20, beforeVisible: function (e, keyboard, el) { var inModal = $(el).parents('.modal').length > 0; if (inModal) { keyboard.$keyboard.appendTo($(el).parents('.modal-content')); } } });
The text was updated successfully, but these errors were encountered: