From 4645073ed73d977c19aaa02a335420b10571c7d5 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 21 Jun 2020 13:29:32 +0200 Subject: Well, I don't need a thesis in corona-times --- plugin/multiplex/client.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 plugin/multiplex/client.js (limited to 'plugin/multiplex/client.js') diff --git a/plugin/multiplex/client.js b/plugin/multiplex/client.js new file mode 100644 index 0000000..3ffd1e0 --- /dev/null +++ b/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); + }); +}()); -- cgit v1.2.3