(e)
| 123 | } |
| 124 | |
| 125 | handleCut (e) { |
| 126 | if (isEmpty(this.state.editing)) { |
| 127 | e.preventDefault() |
| 128 | this.handleCopy(e) |
| 129 | const {start, end} = this.getState() |
| 130 | this.clearSelectedCells(start, end) |
| 131 | } |
| 132 | } |
| 133 | |
| 134 | handleCopy (e) { |
| 135 | if (isEmpty(this.state.editing)) { |