Files
nutty-tools/printer-bot/script.js
T
nuttylmao 7e20a30c67 Complete overhaul of Printer Bot dock
First stage of widget-dock-core
2025-09-06 01:08:14 +10:00

16 lines
520 B
JavaScript

// Construct URL
const currentURL = window.location.href;
let baseURL = currentURL;
if (baseURL.endsWith("index.html"))
baseURL = baseURL.replace("index.html", "");
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.addEventListener('load', () => {
dockWrapper.contentWindow.content.src = window.location.href + '/contents';
});