(tab: string | null)
| 127 | } |
| 128 | |
| 129 | showSettings(tab: string | null) { |
| 130 | if (this.windows.has("settings")) { |
| 131 | this.get("settings").show(); |
| 132 | if (tab != null) { |
| 133 | bus.iat("setSettingTab", tab); |
| 134 | } |
| 135 | } else { |
| 136 | this.createSetting(tab).show(); |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | closeByName(routeName: RouteActionType) { |
| 141 | if (this.windows.has(routeName)) { |
no test coverage detected