- add common ForgeWebUI runtime, site loader, and SQF WebUI bridge base declarations - migrate org and store web UIs to src-driven bundles and new bridge/bootstrap flow - update addon configs/prep hooks and document the shared CT_WEBBROWSER framework
10 lines
302 B
JavaScript
10 lines
302 B
JavaScript
(function () {
|
|
const runtime = window.ForgeWebUI;
|
|
const RegistryApp = (window.RegistryApp = window.RegistryApp || {});
|
|
const OrgPortal = (window.OrgPortal = window.OrgPortal || {});
|
|
|
|
RegistryApp.runtime = runtime;
|
|
OrgPortal.runtime = runtime;
|
|
window.AppRuntime = runtime;
|
|
})();
|