mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-04-20 09:10:52 -04:00
9 lines
286 B
JavaScript
9 lines
286 B
JavaScript
document.addEventListener("DOMContentLoaded", function () {
|
|
if (window.uswds && typeof window.uswds.init === 'function') {
|
|
console.log("Calling USWDS init");
|
|
window.uswds.init();
|
|
} else {
|
|
console.error("USWDS not found or init is not a function");
|
|
}
|
|
});
|