(scope = document)
| 1242 | } |
| 1243 | |
| 1244 | function applyAllFolderColors(scope = document) { |
| 1245 | Object.entries(window.folderColorMap || {}).forEach(([folder, hex]) => { |
| 1246 | applyFolderColorToOption(folder, hex); |
| 1247 | }); |
| 1248 | } |
| 1249 | |
| 1250 | async function saveFolderColor(folder, colorHexOrEmpty) { |
| 1251 | const res = await fetch('/api/folder/saveFolderColor.php', { |
no test coverage detected