CSSes are no longer fetched from Frontend module

This commit is contained in:
2023-02-13 09:57:10 +01:00
parent e6e3a704bc
commit e994881ff0
9 changed files with 4 additions and 635 deletions

View File

@@ -1,10 +0,0 @@
$(document).ready( function() {
let links = document.getElementsByTagName("link")
for (let i = 0; i < links.length; i++) {
let oldStr = links[i].href.split("/")
let endpoint = oldStr.slice(3).join("/")
links[i].href = window.location.protocol + "//" + window.location.hostname + ":8086/" + endpoint
}
});