aboutsummaryrefslogtreecommitdiffhomepage
path: root/presentation/plugin/multiplex/client.js
diff options
context:
space:
mode:
authorMarvin Borner2019-06-17 18:28:49 +0200
committerMarvin Borner2019-06-17 18:28:49 +0200
commit4ec65de8e4f9ed80bbce93c7ea64a24775e7de7e (patch)
tree784b1a82d1c6c4b0c7d0029b6ec2b60d70132dc1 /presentation/plugin/multiplex/client.js
parentf31866c0decfc10a164cc4c8d740e787422b6ddd (diff)
Removed presentation from tracking
Diffstat (limited to 'presentation/plugin/multiplex/client.js')
-rw-r--r--presentation/plugin/multiplex/client.js13
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);
- });
-}());