merge process and interrogate, add exif handler

This commit is contained in:
Vladimir Mandic
2024-03-03 13:26:09 -05:00
parent 328a9cacd4
commit 1b44a16a4e
14 changed files with 283 additions and 268 deletions
+2
View File
@@ -67,6 +67,8 @@ function extract_image_from_gallery(gallery) {
async function setTheme(val, old) {
if (!old || val === old) return;
old = old.replace('modern/', '');
val = val.replace('modern/', '');
const links = Array.from(document.getElementsByTagName('link')).filter((l) => l.href.includes(old));
for (const link of links) {
const href = link.href.replace(old, val);