SimpleChat:JS: Try trap enter key press wrt input text field

So user can either press submit button or press enter key
This commit is contained in:
HanishKVC 2024-05-17 23:01:03 +05:30
parent 29d2d22c02
commit e62087bf3f

View file

@ -141,6 +141,13 @@ function startme() {
handle_submit(inputUser, divChat, gChatURL);
});
inputUser?.addEventListener("keyup", (ev)=> {
if (ev.key === "Enter") {
btnSubmit?.click();
ev.preventDefault();
}
});
}