|
|
@ -21,7 +21,7 @@ class PageBuilder { |
|
|
|
*/ |
|
|
|
registerFunction(name, fun) { |
|
|
|
if (!this.#functionNames.includes(name)) { |
|
|
|
this.#functions.innerText += `const ${name} = ${fun}`; |
|
|
|
this.#functions.innerText += `const ${name} = ${fun};`; |
|
|
|
this.#functionNames.push(name); |
|
|
|
} |
|
|
|
} |
|
|
@ -51,9 +51,12 @@ class PageBuilder { |
|
|
|
head.appendChild(this.#functions) |
|
|
|
head.appendChild(this.#cssClasses) |
|
|
|
|
|
|
|
console.log(this.#functionNames) |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* |
|
|
|
* @param {number} relaunchSeconds timeinterval for page to reload (changes) |
|
|
|
*/ |
|
|
|
inDev(relaunchSeconds = 20) { |
|
|
|
let head = document.querySelector("head"); |
|
|
|
let meta = document.createElement("meta"); |
|
|
|