Browse Source

fix: 🐛 fixes 404 errors when using urlbase

pull/355/head
GilbN 3 years ago
parent
commit
5c3b9092bf
  1. 4
      resources/landing-page/js/scripts.js

4
resources/landing-page/js/scripts.js

@ -56,7 +56,7 @@ function injectTheme(theme,container="head") {
} else html_element = document.body; } else html_element = document.body;
let themeOption = document.getElementById("theme-option") let themeOption = document.getElementById("theme-option")
let link = themeOption ? themeOption : document.createElement("link"); let link = themeOption ? themeOption : document.createElement("link");
url = "/css/theme-options" url = `${window.location.pathname}css/theme-options`
link.type = "text/css"; link.type = "text/css";
link.rel = "stylesheet"; link.rel = "stylesheet";
link.href = `${url}/${themeLower}.css`; link.href = `${url}/${themeLower}.css`;
@ -145,7 +145,7 @@ function fadeOutIn(speed) {
} }
function updateMetaThemeColor() { function updateMetaThemeColor() {
fetch(`/css/theme-options/${Object.keys(themeOptions)[currentIndex].toLowerCase()}.css`) fetch(`${window.location.pathname}css/theme-options/${Object.keys(themeOptions)[currentIndex].toLowerCase()}.css`)
.then(response => response.text()) .then(response => response.text())
.then(text => { .then(text => {
let re = text.match("--accent-color:.*;")[0] let re = text.match("--accent-color:.*;")[0]

Loading…
Cancel
Save