1
0
mirror of https://github.com/hakimel/reveal.js.git synced 2025-09-02 11:12:47 +02:00

tweaks to showSlideNumber config #1833

This commit is contained in:
Hakim El Hattab
2017-02-20 11:49:19 +01:00
parent 8f7e4bfd41
commit b143e5976b
2 changed files with 20 additions and 18 deletions

View File

@@ -767,10 +767,11 @@ Reveal.configure({ slideNumber: true });
// "c/t": flattened slide number / total slides
Reveal.configure({ slideNumber: 'c/t' });
// Control which views the slide number displays on using the "showSlideNumber" value.
// "all": show on all views (default)
// "notes": only show slide numbers on speaker notes view
Reveal.configure({ showSlideNumber: 'notes' });
// Control which views the slide number displays on using the "showSlideNumber" value:
// "all": show on all views (default)
// "speaker": only show slide numbers on speaker notes view
// "print": only show slide numbers when printing to PDF
Reveal.configure({ showSlideNumber: 'speaker' });
```