fixed ctrl enter

This commit is contained in:
Ondřej Hruška 2018-01-06 19:58:04 +01:00
parent 53caab0c0b
commit 9f29fd31ba
No known key found for this signature in database
GPG Key ID: 2C5FD5035250423D
1 changed files with 5 additions and 5 deletions

View File

@ -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