aboutsummaryrefslogtreecommitdiff
path: root/src/js/ui/sections/akNodeInfoSection.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/js/ui/sections/akNodeInfoSection.js')
-rw-r--r--src/js/ui/sections/akNodeInfoSection.js15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/js/ui/sections/akNodeInfoSection.js b/src/js/ui/sections/akNodeInfoSection.js
index 42223bd..38ad961 100644
--- a/src/js/ui/sections/akNodeInfoSection.js
+++ b/src/js/ui/sections/akNodeInfoSection.js
@@ -1,12 +1,15 @@
import { makeElement } from "../../arching-kaos-generator.js";
-var akNodeInfoSection = {
- element: "div",
- id: "arching-kaos-node-info",
- innerHTML: `
+export function akNodeInfoSection()
+{
+ var akNodeInfoSection = {
+ element: "div",
+ id: "arching-kaos-node-info",
+ innerHTML: `
<h2>Node Info</h2>
<em id="node-info-not-found">No data found (yet?)!</em>
`
-};
+ };
-makeElement(akNodeInfoSection, document.querySelector('.main'));
+ makeElement(akNodeInfoSection, document.querySelector('.main'));
+}