[mirotalksfu] - fix 4 mobile

هذا الالتزام موجود في:
Miroslav Pejic
2022-08-25 20:57:00 +02:00
الأصل 3ec3247e0a
التزام 39f5c74fed

عرض الملف

@@ -1004,7 +1004,7 @@ function handleSelects() {
function handleInputs() {
chatMessage.onkeyup = (e) => {
if (e.keyCode === 13 && !e.shiftKey) {
if (e.keyCode === 13 && (DetectRTC.isMobileDevice || !e.shiftKey)) {
e.preventDefault();
chatSendButton.click();
}