Add files via upload

This commit is contained in:
Sam Khoze
2024-06-18 11:23:51 -07:00
committed by GitHub
parent 37ec6f59e0
commit 2862ea9f2c
8 changed files with 894 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
import { $el } from "../../../scripts/ui.js";
function addStylesheet(url) {
if (url.endsWith(".js")) {
url = url.substr(0, url.length - 2) + "css";
}
$el("link", {
parent: document.head,
rel: "stylesheet",
type: "text/css",
href: url.startsWith("http") ? url : getUrl(url),
});
}
function getUrl(path, baseUrl) {
if (baseUrl) {
return new URL(path, baseUrl).toString();
} else {
return new URL("../" + path, import.meta.url).toString();
}
}
addStylesheet(getUrl("styles.css", import.meta.url));