From f411f6cca56ae15c2057e51b829b98eeba7ca060 Mon Sep 17 00:00:00 2001 From: ccd0 Date: Sun, 20 Jul 2014 15:46:24 -0700 Subject: [PATCH] unfocus prev/next buttons after use Fixes the space bar unexpectedly activating the button. --- src/General/Index.coffee | 1 + 1 file changed, 1 insertion(+) diff --git a/src/General/Index.coffee b/src/General/Index.coffee index e42b0fea1..a0dcfa6a1 100644 --- a/src/General/Index.coffee +++ b/src/General/Index.coffee @@ -147,6 +147,7 @@ Index = return if e.shiftKey or e.altKey or e.ctrlKey or e.metaKey or e.button isnt 0 switch e.target.nodeName when 'BUTTON' + e.target.blur() a = e.target.parentNode when 'A' a = e.target