From cb64f8d30f17b05c08962f5406691cbf463a38cb Mon Sep 17 00:00:00 2001 From: slhx agent Date: Tue, 2 Jun 2026 00:04:45 +0200 Subject: [PATCH] docs(kanban): match root-scoped runtime metadata Refresh the kanban north-star walkthrough so rendered metadata and listener attachment match the current data-key/data-slhx-root root-scoped runtime contract. req: runtime/001 req: target_policy/001 --- examples/kanban.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/examples/kanban.md b/examples/kanban.md index d67f5af..7a12fb4 100644 --- a/examples/kanban.md +++ b/examples/kanban.md @@ -275,9 +275,9 @@ The runtime does not know "presence". It executes ops. Initial SSR: ```html -
+
... -
+
Fix login bug
... @@ -291,11 +291,11 @@ BASE64URL_POSTCARD_INITIAL_ATOMS Runtime attachment: ```js -document.addEventListener("submit", dispatch) -document.addEventListener("click", dispatch) -document.addEventListener("pointerdown", dispatch) -document.addEventListener("pointermove", dispatch) -document.addEventListener("pointerup", dispatch) +root.addEventListener("submit", dispatch) +root.addEventListener("click", dispatch) +root.addEventListener("pointerdown", dispatch) +root.addEventListener("pointermove", dispatch) +root.addEventListener("pointerup", dispatch) ``` No framework download. No VDOM. No hydration. No game loop.