Browse Source

display more slides in overview

Hakim El Hattab 10 years ago
parent
commit
ffd3ea410b
2 changed files with 4 additions and 8 deletions
  1. 3 7
      js/reveal.js
  2. 1 1
      js/reveal.min.js

+ 3 - 7
js/reveal.js

@@ -1593,15 +1593,11 @@ var Reveal = (function(){
 
 			// The number of steps away from the present slide that will
 			// be visible
-			var viewDistance = config.viewDistance;
+			var viewDistance = isOverview() ? 20 : config.viewDistance;
 
-			// Heavily limited on weaker devices
+			// Limit view distance on weaker devices
 			if( isMobileDevice ) {
-				viewDistance = 1;
-			}
-
-			if( isOverview() ) {
-				viewDistance = 6;
+				viewDistance = isOverview() ? 6 : 1;
 			}
 
 			for( var x = 0; x < horizontalSlidesLength; x++ ) {

File diff suppressed because it is too large
+ 1 - 1
js/reveal.min.js


Some files were not shown because too many files changed in this diff