diff options
author | Hakim El Hattab | 2013-03-08 18:49:28 -0500 |
---|---|---|
committer | Hakim El Hattab | 2013-03-08 18:49:28 -0500 |
commit | 2bd5e8b65b5e015c7c7ceffeff845e41811007ed (patch) | |
tree | 93cd402c11465003c2b669f0ac2a8162337e649f /plugin/multiplex/client.js | |
parent | 16f9749db5f1e3294b574fd0acddf52280c4bb1d (diff) | |
parent | 4963f15ab31406cf1ee53dc4d116eb8f630f2b1a (diff) |
merge in multiplex (#98)
Diffstat (limited to 'plugin/multiplex/client.js')
-rw-r--r-- | plugin/multiplex/client.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/plugin/multiplex/client.js b/plugin/multiplex/client.js new file mode 100644 index 0000000..cb7b27a --- /dev/null +++ b/plugin/multiplex/client.js @@ -0,0 +1,13 @@ +(function() { + var multiplex = window.globals.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.slide(data.indexh, data.indexv, null, 'remote'); + }); +}()); |