(e)
| 121 | } |
| 122 | |
| 123 | handleContextMenu (e) { |
| 124 | const { row, col, onContextMenu, cell } = this.props |
| 125 | if (!cell.disableEvents) { |
| 126 | onContextMenu(e, row, col) |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | handleKey (e) { |
| 131 | const keyCode = e.which || e.keyCode |
nothing calls this directly
no test coverage detected