aboutsummaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2012-07-04 14:18:09 -0400
committerHakim El Hattab <hakim.elhattab@gmail.com>2012-07-04 14:18:09 -0400
commit0e8640094301889e5c848dcf92084678778f0a19 (patch)
tree943f10c7ebc7268522505c3750e03ee14b59eadc /js
parent421afe6368686b40a13c3b837b41ae1ad552ff7f (diff)
downloadperl-software-in-gnu-guix-0e8640094301889e5c848dcf92084678778f0a19.tar
perl-software-in-gnu-guix-0e8640094301889e5c848dcf92084678778f0a19.tar.gz
conditional loading of socket.io and the notes client js based on window host
Diffstat (limited to 'js')
-rw-r--r--js/reveal.slidenotes.js35
1 files changed, 35 insertions, 0 deletions
diff --git a/js/reveal.slidenotes.js b/js/reveal.slidenotes.js
new file mode 100644
index 0000000..b686ec9
--- /dev/null
+++ b/js/reveal.slidenotes.js
@@ -0,0 +1,35 @@
+(function() {
+ // don't emit events from inside the previews themselves
+ var qs = window.location.href.split('?');
+ if (qs.length > 1 && qs[1].match('receiver')) { return; }
+
+ var socket = io.connect(window.location.origin);
+ var socketId = Math.random().toString().slice(2);
+ console.log('View slide notes at ' + window.location.origin + '/notes/' + socketId);
+
+ 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 notes = slideElement.querySelector('aside.notes');
+ var slideData = {
+ notes : notes ? notes.innerHTML : '',
+ indexh : event.indexh,
+ indexv : event.indexv,
+ nextindexh : nextindexh,
+ nextindexv : nextindexv,
+ socketId : socketId
+ };
+
+ socket.emit('slidechanged', slideData);
+ } );
+}());