mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-06 11:23:48 -05:00
12 lines
388 B
JavaScript
12 lines
388 B
JavaScript
export const ErrorBanner = {
|
|
hideBanner: () => {
|
|
document.querySelectorAll('.banner-dangerous').forEach(el => el.classList.add('display-none'));
|
|
},
|
|
showBanner: () => {
|
|
document.querySelectorAll('.banner-dangerous').forEach(el => el.classList.remove('display-none'));
|
|
}
|
|
};
|
|
|
|
window.NotifyModules = window.NotifyModules || {};
|
|
window.NotifyModules.ErrorBanner = ErrorBanner;
|