aboutsummaryrefslogtreecommitdiffhomepage
path: root/js/reveal.js
diff options
context:
space:
mode:
authorHakim El Hattab2013-08-11 13:42:50 -0400
committerHakim El Hattab2013-08-11 13:42:50 -0400
commitffd3ea410bf4f2efc85b816f054466ce9e7fa839 (patch)
tree92fba49c9cd82f7cb88042f6323503d2441228dc /js/reveal.js
parent81f762080b289a877806f6d5e6580ef90b638e08 (diff)
display more slides in overview
Diffstat (limited to 'js/reveal.js')
-rw-r--r--js/reveal.js10
1 files changed, 3 insertions, 7 deletions
diff --git a/js/reveal.js b/js/reveal.js
index 11f5c43..3e91984 100644
--- a/js/reveal.js
+++ b/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++ ) {