diff options
author | David Banham | 2012-08-05 23:48:55 +1000 |
---|---|---|
committer | David Banham | 2012-08-05 23:48:55 +1000 |
commit | 976536d15ec7859313dcbce33c97fdfd69c00eb1 (patch) | |
tree | c3e3042c9af198dbf092e9e56ef590277359ab3a /plugin/multiplex/client.js | |
parent | 79299d00710e61c7b9cbd9bfda87168b958a836d (diff) |
Added multiplexing server
Diffstat (limited to 'plugin/multiplex/client.js')
-rw-r--r-- | plugin/multiplex/client.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/plugin/multiplex/client.js b/plugin/multiplex/client.js new file mode 100644 index 0000000..5e6b556 --- /dev/null +++ b/plugin/multiplex/client.js @@ -0,0 +1,12 @@ +(function() { + 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.navigateTo(data.indexh, data.indexv, false); + }); +}()); |