(first?: boolean)
| 437 | await this.focusPlot(); |
| 438 | } |
| 439 | public async prevPlot(first?: boolean): Promise<void> { |
| 440 | this.activeIndex = first ? 0 : this.activeIndex - 1; |
| 441 | await this.focusPlot(); |
| 442 | } |
| 443 | |
| 444 | // restore closed plots, reset zoom, redraw html |
| 445 | public resetPlots(): void { |
no test coverage detected