Updated all relative references to '/.common/' to absolute paths

This commit is contained in:
nutty
2026-03-19 22:46:12 +11:00
parent 4f66ecf500
commit 7cc6a093fe
33 changed files with 40 additions and 40 deletions
+2 -2
View File
@@ -2,7 +2,7 @@
<html lang="en">
<head>
<link rel="stylesheet" href="../../../.common/styles/global.css" />
<link rel="stylesheet" href="/.common/styles/global.css" />
<link rel="stylesheet" href="./style.css" />
<script src="https://cdn.jsdelivr.net/npm/luxon@3/build/global/luxon.min.js"></script>
</head>
@@ -73,5 +73,5 @@
</div>
</template>
<script src="../../../.common/utils/helpers.js"></script>
<script src="/.common/utils/helpers.js"></script>
<script src="script.js"></script>
+2 -2
View File
@@ -1,8 +1,8 @@
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="../.common/styles/global.css" />
<link rel="icon" href="../../.common/resources/logo.png" type="image/png">
<link rel="stylesheet" href="/.common/styles/global.css" />
<link rel="icon" href="/.common/resources/logo.png" type="image/png">
<title>nutty</title>
<style>
#dock-wrapper {
+1 -1
View File
@@ -9,7 +9,7 @@ const configJson = "?config=" + baseURL + "config.json";
// Implement widget dock core
window.dockWrapper = document.getElementById('dock-wrapper');
dockWrapper.src = `../../.common/core/widget-dock-core${configJson}`;
dockWrapper.src = `/.common/core/widget-dock-core${configJson}`;
dockWrapper.addEventListener('load', () => {
dockWrapper.contentWindow.content.src = baseURL + '/contents';