- 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
7 lines
185 B
JavaScript
7 lines
185 B
JavaScript
(function () {
|
|
const runtime = window.ForgeWebUI;
|
|
const BankApp = (window.BankApp = window.BankApp || {});
|
|
BankApp.runtime = runtime;
|
|
window.AppRuntime = runtime;
|
|
})();
|