(i, j)
| 394 | } |
| 395 | |
| 396 | onDoubleClick (i, j) { |
| 397 | let cell = this.props.data[i][j] |
| 398 | if (!cell.readOnly) { |
| 399 | this._setState({editing: {i: i, j: j}, forceEdit: true, clear: {}}) |
| 400 | } |
| 401 | } |
| 402 | |
| 403 | onMouseDown (i, j, e) { |
| 404 | const isNowEditingSameCell = !isEmpty(this.state.editing) && this.state.editing.i === i && this.state.editing.j === j |
no outgoing calls
no test coverage detected