فهرست منبع

move speaker notes into page container when printing pdf

Hakim El Hattab 8 سال پیش
والد
کامیت
8d4cb810d6
1فایلهای تغییر یافته به همراه3 افزوده شده و 3 حذف شده
  1. 3 3
      js/reveal.js

+ 3 - 3
js/reveal.js

@@ -649,10 +649,10 @@
 							page.parentNode.insertBefore( notesElement, page.nextSibling );
 						}
 						else {
-							notesElement.style.left = ( notesSpacing - left ) + 'px';
-							notesElement.style.bottom = ( notesSpacing - top ) + 'px';
+							notesElement.style.left = notesSpacing + 'px';
+							notesElement.style.bottom = notesSpacing + 'px';
 							notesElement.style.width = ( pageWidth - notesSpacing*2 ) + 'px';
-							slide.appendChild( notesElement );
+							page.appendChild( notesElement );
 						}
 
 					}