aboutsummaryrefslogtreecommitdiff
path: root/bower_components/reveal.js/plugin/multiplex/client.js
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2018-04-24 09:23:08 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2018-04-24 09:23:08 +0200
commitf64b81fed9702c41af4cec14d91f38ce5ad3384e (patch)
tree63e91bbcd80c75f2239e7313284fcc9b1f42f22d /bower_components/reveal.js/plugin/multiplex/client.js
parent83f6af8f26bd51844d5e83640e81d9d80dc467d4 (diff)
downloadiot-workshop-f64b81fed9702c41af4cec14d91f38ce5ad3384e.tar.gz
iot-workshop-f64b81fed9702c41af4cec14d91f38ce5ad3384e.tar.bz2
iot-workshop-f64b81fed9702c41af4cec14d91f38ce5ad3384e.tar.xz
iot-workshop-f64b81fed9702c41af4cec14d91f38ce5ad3384e.zip
o Moving everything under slides.
Diffstat (limited to 'bower_components/reveal.js/plugin/multiplex/client.js')
-rw-r--r--bower_components/reveal.js/plugin/multiplex/client.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/bower_components/reveal.js/plugin/multiplex/client.js b/bower_components/reveal.js/plugin/multiplex/client.js
deleted file mode 100644
index 3ffd1e0..0000000
--- a/bower_components/reveal.js/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);
- });
-}());