diff options
Diffstat (limited to 'src/js/ui/sections/akNodeInfoSection.js')
-rw-r--r-- | src/js/ui/sections/akNodeInfoSection.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/js/ui/sections/akNodeInfoSection.js b/src/js/ui/sections/akNodeInfoSection.js index df28d6a..63f2a0a 100644 --- a/src/js/ui/sections/akNodeInfoSection.js +++ b/src/js/ui/sections/akNodeInfoSection.js @@ -20,12 +20,19 @@ export function akNodeInfoSection() { element: "h2", innerText:"Node Info" } ] }; + var content = { + element: "div", + className: "content", + innerHTML: [ + { element: "em", id:"node-info-not-found", innerText:"No data found (yet?)!"} + ] + }; var akNodeInfoSection = { element: "div", id: "arching-kaos-node-info", innerHTML: [ whereAmI, - { element: "em", id:"node-info-not-found", innerText:"No data found (yet?)!"} + content ] }; makeElement(akNodeInfoSection, document.querySelector('.main')); |