Sha256: 2ff22703936528eec7c23b9865915e082e5de8e2b04494ec57111c90938d4609
Contents?: true
Size: 403 Bytes
Versions: 78
Compression:
Stored size: 403 Bytes
Contents
(function() { var multiplex = Reveal.getConfig().multiplex; 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.slide(data.indexh, data.indexv, data.indexf, 'remote'); }); }());
Version data entries
78 entries across 74 versions & 9 rubygems