(e)
| 114 | } |
| 115 | |
| 116 | handleDoubleClick (e) { |
| 117 | const { row, col, onDoubleClick, cell } = this.props |
| 118 | if (!cell.disableEvents) { |
| 119 | onDoubleClick(row, col) |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | handleContextMenu (e) { |
| 124 | const { row, col, onContextMenu, cell } = this.props |
nothing calls this directly
no test coverage detected