From ab83d61171e764224353445cbb449e7e46a837fe Mon Sep 17 00:00:00 2001 From: Mayhem Date: Tue, 5 Nov 2013 10:49:09 +0100 Subject: [PATCH] Allow "Shift+[not a letter or number]" keybinds to work in inputs. --- src/Miscellaneous/Keybinds.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Miscellaneous/Keybinds.coffee b/src/Miscellaneous/Keybinds.coffee index 00ee147cd..5388ebc89 100644 --- a/src/Miscellaneous/Keybinds.coffee +++ b/src/Miscellaneous/Keybinds.coffee @@ -20,7 +20,7 @@ Keybinds = return unless key = Keybinds.keyCode e {target} = e if target.nodeName in ['INPUT', 'TEXTAREA'] - return unless /(Esc|Alt|Ctrl|Meta)/.test key + return unless /(Esc|Alt|Ctrl|Meta|Shift\+\w{2,})/.test key threadRoot = Nav.getThread() if op = $ '.op', threadRoot