Переглянути джерело

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

Lauri Ojansivu 6 роки тому
батько
коміт
7a35099fb9
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      client/components/lists/listBody.js

+ 1 - 1
client/components/lists/listBody.js

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