(routeName: RouteActionType)
| 119 | } |
| 120 | |
| 121 | get(routeName: RouteActionType): BrowserWindow { |
| 122 | if (this.windows.has(routeName)) { |
| 123 | return this.windows.get(routeName) as BrowserWindow; |
| 124 | } else { |
| 125 | return this.create(routeName); |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | showSettings(tab: string | null) { |
| 130 | if (this.windows.has("settings")) { |
no test coverage detected