We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f477f7 commit 4e839b3Copy full SHA for 4e839b3
2 files changed
js/controllers/notes.js
@@ -54,7 +54,7 @@ export default class Notes {
54
*/
55
updateVisibility() {
56
57
- if( this.Reveal.getConfig().showNotes && this.hasNotes() ) {
+ if( this.Reveal.getConfig().showNotes && this.hasNotes() && !this.Reveal.print.isPrintingPDF() ) {
58
this.Reveal.getRevealElement().classList.add( 'show-notes' );
59
}
60
else {
js/controllers/print.js
@@ -91,7 +91,7 @@ export default class Print {
91
if( config.showNotes ) {
92
93
// Are there notes for this slide?
94
- let notes = getSlideNotes( slide );
+ let notes = this.Reveal.getSlideNotes( slide );
95
if( notes ) {
96
97
let notesSpacing = 8;
0 commit comments