From 976536d15ec7859313dcbce33c97fdfd69c00eb1 Mon Sep 17 00:00:00 2001 From: David Banham Date: Sun, 5 Aug 2012 23:48:55 +1000 Subject: Added multiplexing server --- plugin/multiplex/client.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 plugin/multiplex/client.js (limited to 'plugin/multiplex/client.js') 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); + }); +}()); -- cgit v1.2.3