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