aboutsummaryrefslogtreecommitdiff
path: root/src/js/ui/sections/mixtapesSection.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/js/ui/sections/mixtapesSection.js')
-rw-r--r--src/js/ui/sections/mixtapesSection.js9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/js/ui/sections/mixtapesSection.js b/src/js/ui/sections/mixtapesSection.js
index a450914..4848f78 100644
--- a/src/js/ui/sections/mixtapesSection.js
+++ b/src/js/ui/sections/mixtapesSection.js
@@ -18,12 +18,19 @@ export function mixtapesSection()
{ element: "h2", innerText:"Mixtapes"}
]
};
+ var content = {
+ element: "div",
+ className: "content",
+ innerHTML: [
+ { element: "em", id:"mixtapes-sec-not-found", innerText:"No data found (yet?)!"}
+ ]
+ };
var mixtapesSection = {
element: "div",
id: "mixtapes-section",
innerHTML: [
whereAmI,
- { element: "em", id:"mixtapes-sec-not-found", innerText:"No data found (yet?)!"}
+ content
]
};
makeElement(mixtapesSection, document.querySelector('.main'));