From 5070d62f055895797739e7426459cea178b3bfeb Mon Sep 17 00:00:00 2001 From: valentinkolb Date: Thu, 14 Mar 2024 22:55:26 +0100 Subject: [PATCH] modified js --- README.md | 12 ++++++++++-- srv/js/template-engine.js | 3 --- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 6024cb1..a4284c2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# wiki-js-customization +# WikiJS Theme und Client-Side Scripte -Dieses Repo enthällt das Theming und zusätzlich Client-Side Scripte für das das Wiki +Dieses Repo enthält das Theming und zusätzlich Client-Side Scripte für das das Wiki. ## Usage @@ -8,6 +8,8 @@ Dieses Repo enthällt das Theming und zusätzlich Client-Side Scripte für das d +#### HTML Head Injections + ```html @@ -15,6 +17,12 @@ Dieses Repo enthällt das Theming und zusätzlich Client-Side Scripte für das d ``` +#### HTML Body Injections + +```html + +``` + ## JS Entwicklung Damit das Custom JA erst ausgeführt wird, wenn das Wiki (Vue.js) die Seite vollständig geladen hat, muss das Custom JS in einem Event registriert werden. diff --git a/srv/js/template-engine.js b/srv/js/template-engine.js index 97834c2..6e7448e 100644 --- a/srv/js/template-engine.js +++ b/srv/js/template-engine.js @@ -69,7 +69,6 @@ const main = () => { }) replaceDivTextExceptSpan(codeElement, newCode) - console.log(newCode) } // create input elements @@ -95,7 +94,6 @@ const main = () => { inputDiv.appendChild(label) inputDiv.appendChild(input) templateContainer.appendChild(inputDiv) - console.log(variable.name, variable.placeholder) }) const copyButton = document.createElement('button') @@ -114,7 +112,6 @@ const main = () => { // insert the template container before the code block outerDiv.insertBefore(templateContainer, codeElement.parentElement.parentElement) - templateContainer.appendChild(codeBlock) }) }