소스 검색

fix an error where reveal.js returned a 1> progress number when there were fragments on last slide

Hakim El Hattab 5 년 전
부모
커밋
922d791fd9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      js/reveal.js

+ 1 - 1
js/reveal.js

@@ -4197,7 +4197,7 @@
 
 		}
 
-		return pastCount / ( totalCount - 1 );
+		return Math.min( pastCount / ( totalCount - 1 ), 1 );
 
 	}