fixed ctrl enter
parent
53caab0c0b
commit
9f29fd31ba
|
@ -128,6 +128,11 @@ const handlers = {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// We submit the status on control/meta + enter.
|
||||||
|
if (onSubmit && e.keyCode === 13 && (e.ctrlKey || e.metaKey)) {
|
||||||
|
onSubmit();
|
||||||
|
}
|
||||||
|
|
||||||
// Switches over the pressed key.
|
// Switches over the pressed key.
|
||||||
switch(e.key) {
|
switch(e.key) {
|
||||||
|
|
||||||
|
@ -157,11 +162,6 @@ const handlers = {
|
||||||
}
|
}
|
||||||
return;
|
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
|
// When the escape key is released, we either close the suggestions
|
||||||
|
|
Loading…
Reference in New Issue