diff options
author | Yoan Blanc <yoan@dosimple.ch> | 2016-08-12 14:48:59 +0200 |
---|---|---|
committer | Yoan Blanc <yoan@dosimple.ch> | 2016-08-12 14:48:59 +0200 |
commit | 9a66aa4a485db4dc972e37974748adb077fb3de1 (patch) | |
tree | 66a3a6bc4dfc71bc4bb61c9c07cff39458627bbb | |
parent | 284279f61e493bf70a8375eb772d293b9fb5d6bf (diff) | |
download | pandoc-9a66aa4a485db4dc972e37974748adb077fb3de1.tar.gz |
Addition of notes-server option.
Enable to run the slides on various hosts and still control it from a
master point of view.
https://github.com/hakimel/reveal.js#server-side-speaker-notes
-rw-r--r-- | default.revealjs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/default.revealjs b/default.revealjs index db16168f9..f72d02290 100644 --- a/default.revealjs +++ b/default.revealjs @@ -228,6 +228,10 @@ $endif$ dependencies: [ { src: '$revealjs-url$/lib/js/classList.js', condition: function() { return !document.body.classList; } }, { src: '$revealjs-url$/plugin/zoom-js/zoom.js', async: true }, + $if(notes-server)$ + { src: '$revealjs-url$/socket.io/socker.io.js', async: true }, + { src: '$revealjs-url$/plugin/notes-server/client.js', async: true }, + $endif$ { src: '$revealjs-url$/plugin/notes/notes.js', async: true } ] }); |