From acfa2e9c0263149057d5658da993afd851c01ff8 Mon Sep 17 00:00:00 2001 From: Leo <11467778+leoriviera@users.noreply.github.com> Date: Mon, 5 Apr 2021 19:27:53 +0100 Subject: [PATCH] Add backtick character to keyCodes --- src/shortcuts.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/shortcuts.js b/src/shortcuts.js index edb2854..463a201 100644 --- a/src/shortcuts.js +++ b/src/shortcuts.js @@ -83,7 +83,8 @@ class Shortcut { 'RIGHT' : 39, 'DOWN' : 40, 'INSERT' : 45, - 'DELETE' : 46 + 'DELETE' : 46, + '`': 192 }; } @@ -182,4 +183,4 @@ class Shortcut { } } -export default Shortcut; \ No newline at end of file +export default Shortcut;