ソースを参照

Fix space key not activating links and checkboxes

Thibaut Courouble 8 年 前
コミット
aed1d8e56e
1 ファイル変更1 行追加1 行削除
  1. 1 1
      assets/javascripts/app/shortcuts.coffee

+ 1 - 1
assets/javascripts/app/shortcuts.coffee

@@ -58,7 +58,7 @@ class app.Shortcuts
       when 27
         @trigger 'escape'
       when 32
-        if not @lastKeypress or @lastKeypress < Date.now() - 500
+        if event.target.type is 'search' and (not @lastKeypress or @lastKeypress < Date.now() - 500)
           @trigger 'pageDown'
           false
       when 33