2012-06-08 05:21:14 +02:00
|
|
|
(function() {
|
2012-07-01 22:43:43 +02:00
|
|
|
// don't emit events from inside the previews themselves
|
2012-07-04 20:42:27 +02:00
|
|
|
if ( window.location.search.match( /receiver/gi ) ) { return; }
|
2012-06-08 05:21:14 +02:00
|
|
|
|
2012-07-01 22:43:43 +02:00
|
|
|
var socket = io.connect(window.location.origin);
|
|
|
|
var socketId = Math.random().toString().slice(2);
|
2012-07-04 20:18:09 +02:00
|
|
|
|
2012-07-01 22:56:06 +02:00
|
|
|
console.log('View slide notes at ' + window.location.origin + '/notes/' + socketId);
|
2012-06-18 00:43:29 +02:00
|
|
|
|
2012-07-01 22:43:43 +02:00
|
|
|
Reveal.addEventListener( 'slidechanged', function( event ) {
|
|
|
|
var nextindexh;
|
|
|
|
var nextindexv;
|
|
|
|
var slideElement = event.currentSlide;
|
2012-06-08 05:21:14 +02:00
|
|
|
|
2012-07-01 22:43:43 +02:00
|
|
|
if (slideElement.nextElementSibling && slideElement.parentNode.nodeName == 'SECTION') {
|
|
|
|
nextindexh = event.indexh;
|
|
|
|
nextindexv = event.indexv + 1;
|
|
|
|
} else {
|
|
|
|
nextindexh = event.indexh + 1;
|
|
|
|
nextindexv = 0;
|
|
|
|
}
|
2012-06-08 05:21:14 +02:00
|
|
|
|
2012-07-01 22:43:43 +02:00
|
|
|
var notes = slideElement.querySelector('aside.notes');
|
|
|
|
var slideData = {
|
|
|
|
notes : notes ? notes.innerHTML : '',
|
|
|
|
indexh : event.indexh,
|
|
|
|
indexv : event.indexv,
|
|
|
|
nextindexh : nextindexh,
|
|
|
|
nextindexv : nextindexv,
|
|
|
|
socketId : socketId
|
|
|
|
};
|
2012-06-08 05:21:14 +02:00
|
|
|
|
2012-07-01 22:43:43 +02:00
|
|
|
socket.emit('slidechanged', slideData);
|
|
|
|
} );
|
2012-06-18 00:43:54 +02:00
|
|
|
}());
|