From 0740711fdeadb4765a2e1f495ed85b4846ef926f Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 23 Jun 2019 12:42:22 +0200 Subject: Began presentation --- presentation/plugin/multiplex/client.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 presentation/plugin/multiplex/client.js (limited to 'presentation/plugin/multiplex/client.js') 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); + }); +}()); -- cgit v1.2.3