fa20-bt/plugin/multiplex/client.js

14 lines
396 B
JavaScript
Raw Normal View History

2012-08-05 13:48:55 +00:00
(function() {
var multiplex = Reveal.getConfig().multiplex;
2012-08-05 13:48:55 +00:00
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;
2013-03-08 00:51:58 +00:00
Reveal.slide(data.indexh, data.indexv, null, 'remote');
2012-08-05 13:48:55 +00:00
});
}());