summaryrefslogtreecommitdiffhomepage
path: root/presentation/plugin/multiplex/client.js
diff options
context:
space:
mode:
authorMarvin Borner2020-05-05 18:13:11 +0200
committerMarvin Borner2020-05-05 18:13:11 +0200
commite5ada93506f2b46f280c9334c0954e6b7c4f597d (patch)
tree019be692e1cb22b4b02c89231bd88cfc930d866c /presentation/plugin/multiplex/client.js
parenta840a022669adcc88fba3339378a0328d7b3032e (diff)
New project layout
Diffstat (limited to 'presentation/plugin/multiplex/client.js')
-rw-r--r--presentation/plugin/multiplex/client.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/presentation/plugin/multiplex/client.js b/presentation/plugin/multiplex/client.js
new file mode 100644
index 0000000..3ffd1e0
--- /dev/null
+++ b/presentation/plugin/multiplex/client.js
@@ -0,0 +1,13 @@
+(function() {
+ var multiplex = Reveal.getConfig().multiplex;
+ var socketId = multiplex.id;
+ var socket = io.connect(multiplex.url);
+
+ socket.on(multiplex.id, function(data) {
+ // ignore data from sockets that aren't ours
+ if (data.socketId !== socketId) { return; }
+ if( window.location.host === 'localhost:1947' ) return;
+
+ Reveal.setState(data.state);
+ });
+}());