Merge pull request #2671 from s-l-lee/fix-notes-printing

Fix slide notes printing
master
Hakim El Hattab 2020-05-21 19:52:48 +02:00 committed by GitHub
commit 8680fb3804
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

4
dist/reveal.esm.js vendored

File diff suppressed because one or more lines are too long

4
dist/reveal.js vendored

File diff suppressed because one or more lines are too long

View File

@ -54,7 +54,7 @@ export default class Notes {
*/
updateVisibility() {
if( this.Reveal.getConfig().showNotes && this.hasNotes() ) {
if( this.Reveal.getConfig().showNotes && this.hasNotes() && !this.Reveal.print.isPrintingPDF() ) {
this.Reveal.getRevealElement().classList.add( 'show-notes' );
}
else {

View File

@ -91,7 +91,7 @@ export default class Print {
if( config.showNotes ) {
// Are there notes for this slide?
let notes = getSlideNotes( slide );
let notes = this.Reveal.getSlideNotes( slide );
if( notes ) {
let notesSpacing = 8;