| 1 | # Init Framework End Extensions DOX |
| 2 | |
| 3 | ## Purpose |
| 4 | |
| 5 | - Own frontend extensions that run after WebUI framework initialization. |
| 6 | |
| 7 | ## Ownership |
| 8 | |
| 9 | - JavaScript files own post-bootstrap global setup such as self-update helpers and session-scoped UI restoration hooks. |
| 10 | |
| 11 | ## Local Contracts |
| 12 | |
| 13 | - JavaScript modules must export a default function. |
| 14 | - Setup must be idempotent across reloads and cache resets. |
| 15 | - Do not register duplicate global listeners. |
| 16 | |
| 17 | ## Work Guidance |
| 18 | |
| 19 | - Coordinate initialization changes with `/js/initFw.js` and component lifecycle directives. |
| 20 | |
| 21 | ## Verification |
| 22 | |
| 23 | - Smoke-test WebUI startup and browser console after changes. |
| 24 | |
| 25 | ## Child DOX Index |
| 26 | |
| 27 | No child DOX files. |