()
| 114 | } |
| 115 | |
| 116 | toggleCursor() { |
| 117 | if (this.state.prevCursor) { |
| 118 | this.cursor = this.state.prevCursor; |
| 119 | this.state.prevCursor = 0; |
| 120 | } else { |
| 121 | this.state.prevCursor = this.cursor; |
| 122 | this.cursor = 0; |
| 123 | } |
| 124 | this.render(); |
| 125 | } |
| 126 | |
| 127 | first() { |
| 128 | this.cursor = 0; |