ソースを参照

card detail: fix title editing with shift key

in firefox there is no global `event` object, therefore we should use the `evt` argument from the event handler
couscous3 7 年 前
コミット
7dae37eeac
1 ファイル変更1 行追加1 行削除
  1. 1 1
      client/components/cards/cardDetails.js

+ 1 - 1
client/components/cards/cardDetails.js

@@ -198,7 +198,7 @@ Template.editCardTitleForm.events({
   'keydown .js-edit-card-title' (evt) {
   'keydown .js-edit-card-title' (evt) {
     // If enter key was pressed, submit the data
     // If enter key was pressed, submit the data
     // Unless the shift key is also being pressed
     // Unless the shift key is also being pressed
-    if (evt.keyCode === 13 && !event.shiftKey) {
+    if (evt.keyCode === 13 && !evt.shiftKey) {
       $('.js-submit-edit-card-title-form').click();
       $('.js-submit-edit-card-title-form').click();
     }
     }
   },
   },