tweak how speaker notes look in pdf exports
This commit is contained in:
parent
f87f3e60f3
commit
edfa131c9c
4 changed files with 7 additions and 7 deletions
|
@ -592,11 +592,14 @@
|
|||
if( config.showNotes ) {
|
||||
var notes = getSlideNotes( slide );
|
||||
if( notes ) {
|
||||
var notesSpacing = 8;
|
||||
var notesElement = document.createElement( 'div' );
|
||||
notesElement.classList.add( 'speaker-notes' );
|
||||
notesElement.classList.add( 'speaker-notes-pdf' );
|
||||
notesElement.innerHTML = notes;
|
||||
notesElement.style.bottom = ( 40 - top ) + 'px';
|
||||
notesElement.style.left = ( notesSpacing - left ) + 'px';
|
||||
notesElement.style.bottom = ( notesSpacing - top ) + 'px';
|
||||
notesElement.style.width = ( pageWidth - notesSpacing*2 ) + 'px';
|
||||
slide.appendChild( notesElement );
|
||||
}
|
||||
}
|
||||
|
@ -881,7 +884,7 @@
|
|||
|
||||
dom.controls.style.display = config.controls ? 'block' : 'none';
|
||||
dom.progress.style.display = config.progress ? 'block' : 'none';
|
||||
dom.slideNumber.style.display = config.slideNumber ? 'block' : 'none';
|
||||
dom.slideNumber.style.display = config.slideNumber && !isPrintingPDF() ? 'block' : 'none';
|
||||
|
||||
if( config.rtl ) {
|
||||
dom.wrapper.classList.add( 'rtl' );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue