mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-19 08:00:13 +01:00
This commit is contained in:
parent
e41fa434f9
commit
88b5bc3ec7
1 changed files with 6 additions and 2 deletions
|
|
@ -790,8 +790,12 @@ export const bazaar = {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
const linkElement = (document.getElementById("themeDefaultStyle") as HTMLLinkElement);
|
const defaultThemeElement = (document.getElementById("themeDefaultStyle") as HTMLLinkElement);
|
||||||
linkElement.href = linkElement.href + "1";
|
defaultThemeElement.href = defaultThemeElement.href + "1";
|
||||||
|
const themeElement = (document.getElementById("themeStyle") as HTMLLinkElement);
|
||||||
|
if (themeElement) {
|
||||||
|
themeElement.href = themeElement.href + "1";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue