diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-12-03 12:15:31 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-12-03 12:15:31 +0200 |
commit | ad0f59fbc2dea546d1e33e2f4ee515827e698eed (patch) | |
tree | a0931bb97a482fa087d78a2218453f16c24a8a3c /src/js/ui/sections/stellarDataConfigSection.js | |
parent | fb2428fb2eff87150d40d84b83c66ccdd7ea47b3 (diff) | |
download | arching-kaos-web-ui-ad0f59fbc2dea546d1e33e2f4ee515827e698eed.tar.gz arching-kaos-web-ui-ad0f59fbc2dea546d1e33e2f4ee515827e698eed.tar.bz2 arching-kaos-web-ui-ad0f59fbc2dea546d1e33e2f4ee515827e698eed.zip |
Separating content from layout
Diffstat (limited to 'src/js/ui/sections/stellarDataConfigSection.js')
-rw-r--r-- | src/js/ui/sections/stellarDataConfigSection.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/js/ui/sections/stellarDataConfigSection.js b/src/js/ui/sections/stellarDataConfigSection.js index 268051f..a7816a1 100644 --- a/src/js/ui/sections/stellarDataConfigSection.js +++ b/src/js/ui/sections/stellarDataConfigSection.js @@ -20,12 +20,19 @@ export function stellarDataConfigSection() { element: "h2", innerText:"Data"} ] }; + var content = { + element: "div", + className: "content", + innerHTML: [ + { element: "em", id:"stellar-data-config-not-found", innerText:"No data found (yet?)!" } + ] + }; var stellarDataConfigSection = { element: "div", id: "stellar-data-config", innerHTML: [ whereAmI, - { element: "em", id:"stellar-data-config-not-found", innerText:"No data found (yet?)!" } + content ] }; makeElement(stellarDataConfigSection, document.querySelector('.main')); |