aboutsummaryrefslogtreecommitdiffhomepage
path: root/presentation/plugin/multiplex/client.js
diff options
context:
space:
mode:
authorMarvin Borner2019-06-23 12:42:22 +0200
committerMarvin Borner2019-06-23 12:42:22 +0200
commit0740711fdeadb4765a2e1f495ed85b4846ef926f (patch)
treeb320803d4dec601c359bcabf82e0c8bfae8c8d7e /presentation/plugin/multiplex/client.js
parentce9c06fd5e41f77df6e0dbcc553e2ca290e20207 (diff)
Began presentation
Diffstat (limited to 'presentation/plugin/multiplex/client.js')
-rw-r--r--presentation/plugin/multiplex/client.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/presentation/plugin/multiplex/client.js b/presentation/plugin/multiplex/client.js
new file mode 100644
index 0000000..f2af3cc
--- /dev/null
+++ b/presentation/plugin/multiplex/client.js
@@ -0,0 +1,15 @@
+(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);
+ });
+}());