diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2015-09-09 14:31:27 +0200 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2015-09-09 14:31:27 +0200 |
commit | 5a40b4486f46b18aa640046595fc592cbb1a5735 (patch) | |
tree | 6a3d3298c758c7d2149b81511a311416eb61c0ed | |
parent | a14a298d305c842d14d823eee6c5aef0ad8c0c42 (diff) | |
download | perl-software-in-gnu-guix-5a40b4486f46b18aa640046595fc592cbb1a5735.tar perl-software-in-gnu-guix-5a40b4486f46b18aa640046595fc592cbb1a5735.tar.gz |
dont show notes container when printing pdf
-rw-r--r-- | js/reveal.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/reveal.js b/js/reveal.js index a19e486..83c180b 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -2473,7 +2473,7 @@ */ function updateNotes() { - if( config.showNotes && dom.speakerNotes && currentSlide ) { + if( config.showNotes && dom.speakerNotes && currentSlide && !isPrintingPDF() ) { var notes = ''; |