aboutsummaryrefslogtreecommitdiff
path: root/plugin/multiplex/client.js
diff options
context:
space:
mode:
authorDavid Banham <david.banham@gmail.com>2012-08-05 23:48:55 +1000
committerDavid Banham <david.banham@gmail.com>2012-08-05 23:48:55 +1000
commit976536d15ec7859313dcbce33c97fdfd69c00eb1 (patch)
treec3e3042c9af198dbf092e9e56ef590277359ab3a /plugin/multiplex/client.js
parent79299d00710e61c7b9cbd9bfda87168b958a836d (diff)
downloadfreenode-live-2017-presentation-976536d15ec7859313dcbce33c97fdfd69c00eb1.tar
freenode-live-2017-presentation-976536d15ec7859313dcbce33c97fdfd69c00eb1.tar.gz
Added multiplexing server
Diffstat (limited to 'plugin/multiplex/client.js')
-rw-r--r--plugin/multiplex/client.js12
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);
+ });
+}());