aboutsummaryrefslogtreecommitdiffhomepage
path: root/plugin/slidenotes/client.js
diff options
context:
space:
mode:
authorHakim El Hattab2012-07-09 21:30:54 -0400
committerHakim El Hattab2012-07-09 21:30:54 -0400
commit54f1fcf381dcf23e54f2b942268aa799969fa9ea (patch)
treef2af92b00479674f864dd1c1b60dfb655ca5b5e2 /plugin/slidenotes/client.js
parent21983c7b7fa434f083589ad80411a44fca4119e2 (diff)
slidenotes becomes speakernotes to match wording in readme
Diffstat (limited to 'plugin/slidenotes/client.js')
-rw-r--r--plugin/slidenotes/client.js35
1 files changed, 0 insertions, 35 deletions
diff --git a/plugin/slidenotes/client.js b/plugin/slidenotes/client.js
deleted file mode 100644
index 1aba8b8..0000000
--- a/plugin/slidenotes/client.js
+++ /dev/null
@@ -1,35 +0,0 @@
-(function() {
- // don't emit events from inside the previews themselves
- if ( window.location.search.match( /receiver/gi ) ) { 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);
- } );
-}());