CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

| Download
Project: KOB1
Views: 16973
1
(function() {
2
var multiplex = Reveal.getConfig().multiplex;
3
var socketId = multiplex.id;
4
var socket = io.connect(multiplex.url);
5
6
socket.on(multiplex.id, function(data) {
7
// ignore data from sockets that aren't ours
8
if (data.socketId !== socketId) { return; }
9
if( window.location.host === 'localhost:1947' ) return;
10
11
Reveal.setState(data.state);
12
});
13
}());
14
15