Showing members, allowing window resize

This commit is contained in:
metacryst
2026-01-14 17:47:59 -06:00
parent 0f400fe300
commit d57ab2bf7a
19 changed files with 94 additions and 87 deletions

View File

@@ -46,7 +46,7 @@ class AppMenu extends Shadow {
this.rerender()
})
.onEvent("appchange", () => {
console.log("event firing successfully")
// console.log("app hello?") // BUG: Quill is not acknowledging this event unless there is something else in the function body
this.rerender()
})
.position("fixed")

View File

@@ -4,6 +4,7 @@ import "../apps/Tasks/Tasks.js"
import "../apps/Messages/Messages.js"
import "../apps/Market/Market.js"
import "../apps/Jobs/Jobs.js"
import "../apps/People/People.js"
class AppWindow extends Shadow {
@@ -25,22 +26,16 @@ class AppWindow extends Shadow {
case "Dashboard":
Dashboard()
break;
case "Forum":
Forum()
break;
case "Messages":
Messages()
break;
case "Market":
Market()
break;
case "Jobs":
Jobs()
case "People":
People()
break;
}
})
.overflow("scroll")
.position("fixed")
.position("absolute")
.onEvent("resize", () => {
this.rerender()
})
.width(window.innerWidth - this.calculateWidth(), px)
.height(window.innerHeight - this.calculateHeight(), px)
.background("var(--app)")