()
| 266 | } |
| 267 | |
| 268 | public updatePanes(): void { |
| 269 | this.left.style.width = `${this.sepLeft}px`; |
| 270 | this.resizerLeft.style("left", `${this.sepLeft}px`); |
| 271 | this.right.style.width = `${(document.body.getBoundingClientRect().width - this.sepRight)}px`; |
| 272 | this.resizerRight.style("right", |
| 273 | `${(document.body.getBoundingClientRect().width - this.sepRight - 1)}px`); |
| 274 | this.updateRangesPane(); |
| 275 | this.panesUpdatedCallback(); |
| 276 | } |
| 277 | |
| 278 | public updateRanges(): void { |
| 279 | if (this.isRangesSnapped()) { |
no test coverage detected