()
| 236 | |
| 237 | // this isn't perfect, but gets the job done without being complicated |
| 238 | function runActiveTimer() { |
| 239 | logActiveState(); |
| 240 | setTimeout(runActiveTimer, 60000); |
| 241 | } |
| 242 | |
| 243 | function hideWindowWithCatch(window: WaveBrowserWindow) { |
| 244 | if (window == null) { |
nothing calls this directly
no test coverage detected