feat: load Caterium account center

This commit is contained in:
pavlov346346-source 2026-09-12 08:48:57 +03:00
parent 9c868aa99b
commit 5cff7135f2

View File

@ -20,4 +20,14 @@
return node;
};
window.SunSafe=Object.freeze({escapeHTML,escapeAttr,idToken,safeImageSrc,setText,insertBefore});
})();
// Small bootstrap for account/profile UI. Keeping it here makes the account
// center available on every Caterium screen without touching the legacy monolith.
if(!document.getElementById('cateriumAccountCenterV1780Script')){
const script=document.createElement('script');
script.id='cateriumAccountCenterV1780Script';
script.src='core/account-center-v1780.js?v=20260912-v17-8-0-account-center-2';
script.async=true;
document.head.appendChild(script);
}
})();