Browse Source

get 'fragmentdata' and react by showing/hiding the corresponding fragments

embed
Michael Kühnel 12 years ago
parent
commit
d02e64adbd
  1. 13
      plugin/speakernotes/notes.html

13
plugin/speakernotes/notes.html

@ -110,6 +110,7 @@
socket.on('slidedata', function(data) {
// ignore data from sockets that aren't ours
console.dir(data);
if (data.socketId !== socketId) { return; }
if (data.markdown) {
@ -122,6 +123,18 @@
currentSlide.contentWindow.Reveal.slide(data.indexh, data.indexv);
nextSlide.contentWindow.Reveal.slide(data.nextindexh, data.nextindexv);
});
socket.on('fragmentdata', function(data) {
// ignore data from sockets that aren't ours
console.dir(data);
if (data.socketId !== socketId) { return; }
if (data.showFragment === true) {
currentSlide.contentWindow.Reveal.nextFragment();
}
else if (data.hideFragment === true) {
currentSlide.contentWindow.Reveal.previousFragment();
}
});
</script>
</body>

Loading…
Cancel
Save