syncFragments now returns all affected fragments

This commit is contained in:
Hakim El Hattab 2019-03-11 14:50:35 +01:00
parent cef864a7be
commit 69ee643846
1 changed files with 8 additions and 1 deletions

View File

@ -2975,6 +2975,9 @@
*/
function syncSlide( slide ) {
// Default to the current slide
slide = slide || Reveal.getCurrentSlide();
syncBackground( slide );
syncFragments( slide );
@ -2991,10 +2994,14 @@
* after reveal.js has already initialized.
*
* @param {HTMLElement} slide
* @return {Array} a list of the HTML fragments that were synced
*/
function syncFragments( slide ) {
sortFragments( slide.querySelectorAll( '.fragment' ) );
// Default to the current slide
slide = slide || Reveal.getCurrentSlide();
return sortFragments( slide.querySelectorAll( '.fragment' ) );
}