- When writing to minicard, press Shift-Enter on minicard to go to next line below,

to continue writing on same minicard 2nd line.

Thanks to bentiss!
This commit is contained in:
Lauri Ojansivu 2019-02-01 17:03:59 +02:00
parent d08bee6817
commit 7a35099fb9

View file

@ -260,7 +260,7 @@ BlazeComponent.extendComponent({
pressKey(evt) {
// Pressing Enter should submit the card
if (evt.keyCode === 13) {
if (evt.keyCode === 13 && !evt.shiftKey) {
evt.preventDefault();
const $form = $(evt.currentTarget).closest('form');
// XXX For some reason $form.submit() does not work (it's probably a bug