Selaa lähdekoodia

flatten slide number when there are only vertical slides

Hakim El Hattab 6 vuotta sitten
vanhempi
commit
30b670cf42
1 muutettua tiedostoa jossa 6 lisäystä ja 0 poistoa
  1. 6 0
      js/reveal.js

+ 6 - 0
js/reveal.js

@@ -3043,6 +3043,12 @@
 				format = config.slideNumber;
 			}
 
+			// If there are ONLY vertical slides in this deck, always use
+			// a flattened slide number
+			if( !/c/.test( format ) && dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ).length === 1 ) {
+				format = 'c';
+			}
+
 			switch( format ) {
 				case 'c':
 					value.push( getSlidePastCount() + 1 );