We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e9f391 commit 4e8ec9aCopy full SHA for 4e8ec9a
demo.js
@@ -90,8 +90,8 @@ window.addEventListener('DOMContentLoaded', () => {
90
* want for a keyboard layout emulation. The code below works around that.
91
*/
92
input.addEventListener('input', (event) => {
93
- if (event.inputType === 'insertCompositionText'
94
- || event.inputType === 'insertText') {
+ if ((event.inputType === 'insertCompositionText'
+ || event.inputType === 'insertText') && event.isComposing) {
95
event.target.value = event.target.value.slice(0, -event.data.length);
96
}
97
});
0 commit comments