comparison src/chat.js @ 17:7230c821c368

push fixes
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 04 Nov 2024 14:44:35 -0700
parents 82b55186a4a0
children 0721dcf222e1
comparison
equal deleted inserted replaced
16:82b55186a4a0 17:7230c821c368
2 2
3 let currentChatId = null; 3 let currentChatId = null;
4 let eventSource; 4 let eventSource;
5 5
6 function evalEvent(event) { 6 function evalEvent(event) {
7 // console.log(event);
7 eval(event.data); 8 eval(event.data);
8 } 9 }
9 10
10 function setUserEventSource(userId) { 11 function setUserEventSource(userId) {
11 let userEventSource = new EventSource(`${location.origin}/user/${userId}`); 12 let userEventSource = new EventSource(`${location.origin}/user/${userId}`);