gitpitch/public/libs/reveal.js/3.7.0/plugin/multiplex/client.js
David Russell af43fbb397 Upgraded GitPitch library dependencies.
- Reveal.js upgraded from 3.6.0 to 3.7.0
- FontAwesome upgraded from 4.6.3 to 4.7.0
2018-08-19 13:09:40 +07:00

14 lines
369 B
JavaScript

(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.setState(data.state);
});
}());