2012-08-05 15:48:55 +02:00
|
|
|
(function() {
|
|
|
|
// don't emit events from inside the previews themselves
|
|
|
|
if ( window.location.search.match( /receiver/gi ) ) { return; }
|
2013-03-08 01:51:58 +01:00
|
|
|
var multiplex = window.globals.multiplex;
|
2012-08-05 15:48:55 +02:00
|
|
|
|
|
|
|
var socket = io.connect(multiplex.url);
|
2013-03-09 00:49:28 +01:00
|
|
|
|
2012-08-05 15:48:55 +02:00
|
|
|
Reveal.addEventListener( 'slidechanged', function( event ) {
|
|
|
|
var nextindexh;
|
|
|
|
var nextindexv;
|
|
|
|
var slideElement = event.currentSlide;
|
|
|
|
|
|
|
|
if (slideElement.nextElementSibling && slideElement.parentNode.nodeName == 'SECTION') {
|
|
|
|
nextindexh = event.indexh;
|
|
|
|
nextindexv = event.indexv + 1;
|
|
|
|
} else {
|
|
|
|
nextindexh = event.indexh + 1;
|
|
|
|
nextindexv = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
var slideData = {
|
|
|
|
indexh : event.indexh,
|
|
|
|
indexv : event.indexv,
|
|
|
|
nextindexh : nextindexh,
|
|
|
|
nextindexv : nextindexv,
|
|
|
|
secret: multiplex.secret,
|
|
|
|
socketId : multiplex.id
|
|
|
|
};
|
|
|
|
|
2013-03-09 00:49:28 +01:00
|
|
|
if( typeof event.origin === 'undefined' && event.origin !== 'remote' ) socket.emit('slidechanged', slideData);
|
2012-08-05 15:48:55 +02:00
|
|
|
} );
|
|
|
|
}());
|