()
| 83 | } |
| 84 | |
| 85 | function syncToolDarkModeFromStorage() { |
| 86 | syncToolDarkMode(null); |
| 87 | readChromeStorageSettings(settings => { |
| 88 | if (settings) { |
| 89 | syncToolDarkMode(settings); |
| 90 | } |
| 91 | }); |
| 92 | } |
| 93 | |
| 94 | function ensureToolDarkModeWatcher() { |
| 95 | if (mediaQueryHandler) { |
no test coverage detected