()
| 170 | } |
| 171 | |
| 172 | collapseSelectionToFocus() { |
| 173 | if (this.selection.toString().length == 0) return; |
| 174 | if (this.getDirection() === forward) { |
| 175 | this.selection.collapseToEnd(); |
| 176 | } else { |
| 177 | this.selection.collapseToStart(); |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | setSelectionRange(range) { |
| 182 | this.selection.removeAllRanges(); |
no test coverage detected