diff options
author | Marvin Borner | 2020-06-21 13:29:32 +0200 |
---|---|---|
committer | Marvin Borner | 2020-06-21 13:29:32 +0200 |
commit | 4645073ed73d977c19aaa02a335420b10571c7d5 (patch) | |
tree | 3170a25d2565b79e585d5dec5ab87f7de4b2c721 /presentation/plugin/multiplex/client.js | |
parent | e5ada93506f2b46f280c9334c0954e6b7c4f597d (diff) |
Well, I don't need a thesis in corona-times
Diffstat (limited to 'presentation/plugin/multiplex/client.js')
-rw-r--r-- | presentation/plugin/multiplex/client.js | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/presentation/plugin/multiplex/client.js b/presentation/plugin/multiplex/client.js deleted file mode 100644 index 3ffd1e0..0000000 --- a/presentation/plugin/multiplex/client.js +++ /dev/null @@ -1,13 +0,0 @@ -(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); - }); -}()); |