ソースを参照

prevent missing 'present' class when navigating to same slide twice

Hakim El Hattab 6 年 前
コミット
511397c177
1 ファイル変更1 行追加1 行削除
  1. 1 1
      js/reveal.js

+ 1 - 1
js/reveal.js

@@ -2480,7 +2480,7 @@
 		// Solves an edge case where the previous slide maintains the
 		// 'present' class when navigating between adjacent vertical
 		// stacks
-		if( previousSlide ) {
+		if( previousSlide && previousSlide !== currentSlide ) {
 			previousSlide.classList.remove( 'present' );
 			previousSlide.setAttribute( 'aria-hidden', 'true' );