aboutsummaryrefslogtreecommitdiff
path: root/bower_components/reveal.js/plugin/multiplex/client.js
diff options
context:
space:
mode:
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, 13 insertions, 0 deletions
diff --git a/bower_components/reveal.js/plugin/multiplex/client.js b/bower_components/reveal.js/plugin/multiplex/client.js
new file mode 100644
index 0000000..3ffd1e0
--- /dev/null
+++ b/bower_components/reveal.js/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);
+ });
+}());