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