jaywcjlove / react-hotkeys

React component to listen to keydown and keyup keyboard events, defining and dispatching keyboard shortcuts.

Home Page:https://jaywcjlove.github.io/react-hotkeys/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

"delete" is not support

AntoninSorrento opened this issue · comments

delete is not support

image

@AntoninSorrento This is a compatibility issue. use backspace to achieve..

<Hotkeys 
  keyName="backspace" 
  onKeyDown={this.onKeyDown.bind(this)}
  onKeyUp={this.onKeyUp.bind(this)}
>
  test
</Hotkeys>