Skip to content

Commit

Permalink
feat: Backspace key
Browse files Browse the repository at this point in the history
  • Loading branch information
co-kevin committed Nov 20, 2018
1 parent 30607c9 commit d531517
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ const createShortcutIndex = (pKey) => {
if (pKey.key === 'Home') { k += 'home' }
if (pKey.key === 'End') { k += 'end' }
if (pKey.key === 'Delete') { k += 'del' }
if (pKey.key === 'Backspace') { k += 'backspace' }
if (pKey.key === 'Insert') { k += 'insert' }
if (pKey.key === 'NumLock') { k += 'numlock' }
if (pKey.key === 'CapsLock') { k += 'capslock' }
Expand Down

0 comments on commit d531517

Please sign in to comment.