From 070a1e3ee5bbe44b6f3cdadedb031f3eee433ac6 Mon Sep 17 00:00:00 2001 From: Eric J. Duran Date: Wed, 17 Oct 2012 17:46:43 -0400 Subject: Replacing speakernotes plugin with a simple postMessage system --- index.html | 31 +++++++++- notes.html | 121 ++++++++++++++++++++++++++++++++++++++ plugin/speakernotes/client.js | 38 ------------ plugin/speakernotes/index.js | 55 ------------------ plugin/speakernotes/notes.html | 128 ----------------------------------------- 5 files changed, 151 insertions(+), 222 deletions(-) create mode 100644 notes.html delete mode 100644 plugin/speakernotes/client.js delete mode 100644 plugin/speakernotes/index.js delete mode 100644 plugin/speakernotes/notes.html diff --git a/index.html b/index.html index 3ea2412..43d8b38 100644 --- a/index.html +++ b/index.html @@ -350,7 +350,36 @@ function linkify( selector ) { { src: 'plugin/speakernotes/client.js', async: true, condition: function() { return window.location.host === 'localhost:1947'; } } ] }); - + + // Set up simple postMessage notes system. + var url = window.location.href; + if(url.indexOf('?' + 'notes' + '=') !== 'true') { + var notesPopup = window.open('notes.html'); + 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, + markdown : notes ? typeof notes.getAttribute('data-markdown') === 'string' : false + }; + notesPopup.postMessage(JSON.stringify(slideData), '*'); + }); + }
+ + + + + + + + +diff --git a/notes.html b/notes.html new file mode 100644 index 0000000..4dbc986 --- /dev/null +++ b/notes.html @@ -0,0 +1,121 @@ + + +
+ + +
+ + + + +
+