rDrama/files/assets/js/messages.js

17 lines
359 B
JavaScript
Raw Normal View History

2023-09-26 20:05:39 +00:00
const socket = io()
socket.on('insert_reply', function(data) {
const replies = document.getElementById(`replies-of-c_${data[0]}`)
if (replies) {
replies.insertAdjacentHTML('beforeend', data[1]);
2023-09-26 20:05:39 +00:00
2024-03-08 05:21:15 +00:00
register_new_elements(replies.lastElementChild);
bs_trigger(replies.lastElementChild);
2024-03-08 05:18:45 +00:00
notifs = notifs + 1;
if (notifs == 1) {
flash();
}
2023-09-26 20:05:39 +00:00
}
})