diff options
Diffstat (limited to 'src/js/ui/sections/commentsSection.js')
| -rw-r--r-- | src/js/ui/sections/commentsSection.js | 11 | 
1 files changed, 10 insertions, 1 deletions
diff --git a/src/js/ui/sections/commentsSection.js b/src/js/ui/sections/commentsSection.js index 5d520cf..00ec8fe 100644 --- a/src/js/ui/sections/commentsSection.js +++ b/src/js/ui/sections/commentsSection.js @@ -9,11 +9,20 @@ import { makeElement } from "../../arching-kaos-generator.js";  export function commentsSection()  { +    var whereAmI = { +        element: "div", +        className: "where-am-i", +        innerHTML: [ +            { element: "img", src:"./img/logo.png", onclick:"menusel({id:'#/welcome-section'})"}, +            { element: "span", innerText:">"}, +            { element: "h2", innerText:"Comments"} +        ] +    };      var commentsSection = {          element: 'div',          id: 'comments-section',          innerHTML: [ -            { element: "h2", innerText: "Comments" }, +            whereAmI,              { element: "em", id:"comments-sec-not-found", innerText: "No data found (yet?)!"}          ]      };  | 
