bug chat notification when logout

This commit is contained in:
amazuecos
2025-01-11 11:46:34 +01:00
parent 5a6174a597
commit 4842356f8d
2 changed files with 13 additions and 7 deletions

View File

@ -1,10 +1,16 @@
import {showNotificationMessages} from "../components/chat.js";
import { showNotificationMessages } from "../components/chat.js";
showNotificationMessages($("#chat-notification-list"))
$(() => {
setInterval(() => {
showNotificationMessages($("#chat-notification-list"))
},10000)
$("#message-notification-dropdown").on("click",(e) => {
showNotificationMessages($("#chat-notification-list"))
const chatNotificationInterval = setInterval(() => {
showNotificationMessages($("#chat-notification-list"))
}, 10000)
$("#message-notification-dropdown").on("click", (e) => {
showNotificationMessages($("#chat-notification-list"))
})
$("#btn-log-out").on("click",() => {
clearInterval(chatNotificationInterval)
console.log("CLEAR")
})
})