Files
safekat/httpdocs/assets/js/safekat/pages/chatNotification.js
2025-01-11 11:46:34 +01:00

16 lines
529 B
JavaScript

import { showNotificationMessages } from "../components/chat.js";
$(() => {
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")
})
})