瀏覽代碼

Reduce space bar shortcut timeout

Thibaut 10 年之前
父節點
當前提交
0aa1ff4e80
共有 1 個文件被更改,包括 1 次插入1 次删除
  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