(force?: boolean)
| 477 | } |
| 478 | |
| 479 | public toggleStyle(force?: boolean): void { |
| 480 | this.stripStyles = force ?? !this.stripStyles; |
| 481 | const msg: ToggleStyleMessage = { |
| 482 | message: 'toggleStyle', |
| 483 | useOverwrites: this.stripStyles |
| 484 | }; |
| 485 | this.postWebviewMessage(msg); |
| 486 | } |
| 487 | |
| 488 | public toggleFullWindow(force?: boolean): void { |
| 489 | this.fullWindow = force ?? !this.fullWindow; |
no test coverage detected