diff options
author | Michael Kühnel | 2012-10-19 00:04:40 +0200 |
---|---|---|
committer | Michael Kühnel | 2012-10-19 00:04:40 +0200 |
commit | c46486b3df7db25912bc085c7d84612b0724a7cc (patch) | |
tree | 9c11b36797e2ab960d249ed0e78461382f0e8138 /plugin | |
parent | 46e270e59f9aae7a3528fcd3f9d2287f341c0be7 (diff) |
Add event listener 'fragmentshown' and 'fragmenthidden'
And emit 'fragmentchanged' with the appropriate fragmentData to show or hide fragments.
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/speakernotes/client.js | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/plugin/speakernotes/client.js b/plugin/speakernotes/client.js index 43dc126..757e6cd 100644 --- a/plugin/speakernotes/client.js +++ b/plugin/speakernotes/client.js @@ -8,6 +8,25 @@ console.log('View slide notes at ' + window.location.origin + '/notes/' + socketId); window.open(window.location.origin + '/notes/' + socketId, 'notes-' + socketId); + // Fires when a fragment is shown + Reveal.addEventListener( 'fragmentshown', function( event ) { + var fragmentData = { + showFragment : true, + socketId : socketId + }; + socket.emit('fragmentchanged', fragmentData); + } ); + + // Fires when a fragment is hidden + Reveal.addEventListener( 'fragmenthidden', function( event ) { + var fragmentData = { + hideFragment : true, + socketId : socketId + }; + socket.emit('fragmentchanged', fragmentData); + } ); + + // Fires when slide is changed Reveal.addEventListener( 'slidechanged', function( event ) { var nextindexh; var nextindexv; |