#1515 contentScript - notification improvement

This commit is contained in:
GrzegorzZajac000 2024-03-22 14:28:36 +01:00
parent cd2b76eb60
commit bf16657590
2 changed files with 29 additions and 12 deletions

View File

@ -69,21 +69,30 @@ const notification = request => {
setTimeout(() => n.notification.classList.add('visible'), 300);
window.addEventListener('beforeunload', () => {
n.notification.classList.remove('visible');
if (n && n.notification) {
n.notification.classList.remove('visible');
}
setTimeout(() => {
n.notification.classList.add('hidden');
n = null;
if (n && n.notification) {
n.notification.classList.add('hidden');
n = null;
}
}, 300);
});
if (request.timeout) {
setTimeout(() => {
n.notification.classList.remove('visible');
if (n && n.notification) {
n.notification.classList.remove('visible');
}
}, 5300);
setTimeout(() => {
n.notification.classList.add('hidden');
n = null;
if (n && n.notification) {
n.notification.classList.add('hidden');
n = null;
}
}, 5600);
}
};

View File

@ -99,21 +99,29 @@ const tokenNotification = token => {
setTimeout(() => n.notification.classList.add('visible'), 300);
window.addEventListener('beforeunload', () => {
n.notification.classList.remove('visible');
if (n && n.notification) {
n.notification.classList.remove('visible');
}
setTimeout(() => {
n.notification.classList.add('hidden');
n = null;
if (n && n.notification) {
n.notification.classList.add('hidden');
n = null;
}
}, 300);
});
setTimeout(() => {
n.notification.classList.remove('visible');
if (n && n.notification) {
n.notification.classList.remove('visible');
}
}, 30300);
setTimeout(() => {
n.notification.classList.add('hidden');
n = null;
if (n && n.notification) {
n.notification.classList.add('hidden');
n = null;
}
}, 30600);
};