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
The following process doesn't work in Chromium. Works in Firefox as intended. Which behavior is correct?
document.addEventListener("DOMContentLoaded",()=>{consttextArea=document.querySelector("textarea");textArea.addEventListener("input",(event)=>{if(event.isComposing){// skip while IME input because it's half-bakedreturn;}// your process here});});