Jacob Schmidt 603963c935 Refactor bank UI to bridge-driven single-page flow
- Replace separate bank/ATM pages with a unified `index.html` app bundle
- Split bank init into `initClass`, `initSessionService`, and `initUIBridge`
- Route UI events through `BankUIBridge` and refresh session payloads after sync
2026-03-14 12:11:34 -05:00

7 lines
185 B
JavaScript

(function () {
const runtime = window.ForgeWebUI;
const BankApp = (window.BankApp = window.BankApp || {});
BankApp.runtime = runtime;
window.AppRuntime = runtime;
})();