forked from hakimel/reveal.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
conditional loading of socket.io and the notes client js based on win…
…dow host
- Loading branch information
Showing
4 changed files
with
52 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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); | ||
} ); | ||
}()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters