Skip to content

Commit 4e8ec9a

Browse files
committed
Don’t remove last char when deadkey is pressed.
1 parent 0e9f391 commit 4e8ec9a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

demo.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ window.addEventListener('DOMContentLoaded', () => {
9090
* want for a keyboard layout emulation. The code below works around that.
9191
*/
9292
input.addEventListener('input', (event) => {
93-
if (event.inputType === 'insertCompositionText'
94-
|| event.inputType === 'insertText') {
93+
if ((event.inputType === 'insertCompositionText'
94+
|| event.inputType === 'insertText') && event.isComposing) {
9595
event.target.value = event.target.value.slice(0, -event.data.length);
9696
}
9797
});

0 commit comments

Comments
 (0)