From d02e64adbd986d44dd02a70aec54aac606cdf7ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Ku=CC=88hnel?= Date: Fri, 19 Oct 2012 00:07:26 +0200 Subject: [PATCH] get 'fragmentdata' and react by showing/hiding the corresponding fragments --- plugin/speakernotes/notes.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/plugin/speakernotes/notes.html b/plugin/speakernotes/notes.html index c051879..af42480 100644 --- a/plugin/speakernotes/notes.html +++ b/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(); + } + });