* Hide the status bar
()
| 461 | * Hide the status bar |
| 462 | */ |
| 463 | private hide(): void { |
| 464 | this.stopElapsedTicker(); |
| 465 | if (this.statusBarElement) { |
| 466 | this.statusBarElement.classList.remove( |
| 467 | "tn-static-display-block-2a1b75c9", |
| 468 | "tn-static-display-flex-4d51fc62", |
| 469 | "tn-static-display-flex-75816cae", |
| 470 | "tn-static-display-flex-8bb39979", |
| 471 | "tn-static-display-inline-block-60e32dcb", |
| 472 | "tn-static-display-inline-cccfa456", |
| 473 | "tn-static-display-inline-flex-f984c520", |
| 474 | "tn-static-min-height-800px-997b4c8c" |
| 475 | ); |
| 476 | this.statusBarElement.classList.add("tn-static-display-none-6b99de8b"); |
| 477 | } |
| 478 | } |
| 479 | |
| 480 | private hidePomodoroStatusBar(): void { |
| 481 | if (this.pomodoroStatusBarElement) { |
no test coverage detected