Jelajahi Sumber

Reduce space bar shortcut timeout

Thibaut 10 tahun lalu
induk
melakukan
0aa1ff4e80
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      assets/javascripts/app/shortcuts.coffee

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

@@ -47,7 +47,7 @@ class app.Shortcuts
       when 27
         @trigger 'escape'
       when 32
-        if not @lastKeypress or @lastKeypress < Date.now() - 1000
+        if not @lastKeypress or @lastKeypress < Date.now() - 500
           @trigger 'pageDown'
           false
       when 33