()
| 84 | } |
| 85 | |
| 86 | open(): void { |
| 87 | this.window = window.open(this.url, this.target, this.features); |
| 88 | if (!this.window) throw LoginError.popupBlocked(); |
| 89 | if (this.window?.focus) this.window.focus(); |
| 90 | } |
| 91 | |
| 92 | close(): void { |
| 93 | this.iClosedWindow = true; |
no test coverage detected