Basic cours support #44

Merged
Anri merged 67 commits from cours into main 2024-04-01 18:11:49 +02:00
Showing only changes of commit 97e5010443 - Show all commits

View file

@ -148,7 +148,9 @@ window.addEventListener("load", () => {
dataElement.remove();
// Open nested openeded directories
const fullpath = window.location.href.split("?")[1].substring(2);
const infoURL = window.location.href.split("?");
if (infoURL.length > 1) {
const fullpath = infoURL[1].substring(2);
const path = fullpath.substring(0, fullpath.lastIndexOf("/"));
const last_openeded = deepestNodeOpened(
path.split("/"),
@ -156,6 +158,7 @@ window.addEventListener("load", () => {
);
uncollapse(last_openeded);
}
// Fix SVG images
svgDarkTheme();