a14e8ba250
* Adds favicon badge for notification alert.
21 lines
614 B
JavaScript
21 lines
614 B
JavaScript
export const showBadgeOnFavicon = () => {
|
|
const favicons = document.querySelectorAll('.favicon');
|
|
|
|
favicons.forEach(favicon => {
|
|
const newFileName = `/favicon-badge-${favicon.sizes[[0]]}.png`;
|
|
favicon.href = newFileName;
|
|
});
|
|
};
|
|
|
|
export const initFaviconSwitcher = () => {
|
|
const favicons = document.querySelectorAll('.favicon');
|
|
|
|
document.addEventListener('visibilitychange', () => {
|
|
if (document.visibilityState === 'visible') {
|
|
favicons.forEach(favicon => {
|
|
const oldFileName = `/favicon-${favicon.sizes[[0]]}.png`;
|
|
favicon.href = oldFileName;
|
|
});
|
|
}
|
|
});
|
|
};
|