فهرست منبع

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