aboutsummaryrefslogtreecommitdiff
path: root/src/js/ui/sections/mixtapesSection.js
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2024-11-30 16:45:38 +0200
committerkaotisk <kaotisk@arching-kaos.org>2024-11-30 16:45:38 +0200
commitdeb8d4969e30f9c54deadf52dc87fcc5982bc076 (patch)
treed7104db222284555919cbda5ea24a25ff35553b8 /src/js/ui/sections/mixtapesSection.js
parentfcb46774124af79d7524f102ccdcafb6042c3d5c (diff)
downloadarching-kaos-web-ui-deb8d4969e30f9c54deadf52dc87fcc5982bc076.tar.gz
arching-kaos-web-ui-deb8d4969e30f9c54deadf52dc87fcc5982bc076.tar.bz2
arching-kaos-web-ui-deb8d4969e30f9c54deadf52dc87fcc5982bc076.zip
Refactoring final
Diffstat (limited to 'src/js/ui/sections/mixtapesSection.js')
-rw-r--r--src/js/ui/sections/mixtapesSection.js24
1 files changed, 13 insertions, 11 deletions
diff --git a/src/js/ui/sections/mixtapesSection.js b/src/js/ui/sections/mixtapesSection.js
index 6710c11..a450914 100644
--- a/src/js/ui/sections/mixtapesSection.js
+++ b/src/js/ui/sections/mixtapesSection.js
@@ -9,21 +9,23 @@ import { makeElement } from "../../arching-kaos-generator.js";
export function mixtapesSection()
{
+ var whereAmI = {
+ element: "div",
+ className: "where-am-i",
+ innerHTML: [
+ { element: "img", src:"./img/logo.png", onclick:"menusel({id:'#/welcome-section'})"},
+ { element: "span", innerText:">"},
+ { element: "h2", innerText:"Mixtapes"}
+ ]
+ };
var mixtapesSection = {
element: "div",
id: "mixtapes-section",
- innerHTML: `
- <div class="where-am-i">
- <img src="./img/logo.png" onclick="menusel({id:'#/welcome-section'})"/>
- <span>&gt;</span>
- <h2>Modules</h2>
- <span>&gt;</span>
- <h2>Mixtapes</h2>
- </div>
- <em id="mixtapes-sec-not-found">No data found (yet?)!</em>
- `
+ innerHTML: [
+ whereAmI,
+ { element: "em", id:"mixtapes-sec-not-found", innerText:"No data found (yet?)!"}
+ ]
};
-
makeElement(mixtapesSection, document.querySelector('.main'));
}
// @license-end