mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
15 lines
241 B
JavaScript
15 lines
241 B
JavaScript
var evtSource = new EventSource('/sse');
|
|
|
|
onconnect = function(e) {
|
|
|
|
var port = e.ports[0];
|
|
|
|
port.start();
|
|
|
|
evtSource.addEventListener('notifications', function(e) {
|
|
var obj = JSON.parse(e.data);
|
|
port.postMessage(obj);
|
|
}, false);
|
|
|
|
}
|