From 9f29fd31ba3cdeb2f4551a662c68905e9a1a9e33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Hru=C5=A1ka?= Date: Sat, 6 Jan 2018 19:58:04 +0100 Subject: [PATCH] fixed ctrl enter --- .../glitch/features/composer/textarea/index.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/javascript/flavours/glitch/features/composer/textarea/index.js b/app/javascript/flavours/glitch/features/composer/textarea/index.js index 0f5fd4d4d..6c2b8baa2 100644 --- a/app/javascript/flavours/glitch/features/composer/textarea/index.js +++ b/app/javascript/flavours/glitch/features/composer/textarea/index.js @@ -128,6 +128,11 @@ const handlers = { return; } + // We submit the status on control/meta + enter. + if (onSubmit && e.keyCode === 13 && (e.ctrlKey || e.metaKey)) { + onSubmit(); + } + // Switches over the pressed key. switch(e.key) { @@ -157,11 +162,6 @@ const handlers = { } return; } - - // We submit the status on control/meta + enter. - if (onSubmit && e.keyCode === 13 && (e.ctrlKey || e.metaKey)) { - onSubmit(); - } }, // When the escape key is released, we either close the suggestions