Skip to content
Snippets Groups Projects
  1. Apr 08, 2020
  2. Apr 07, 2020
  3. Mar 13, 2020
  4. Mar 10, 2020
  5. Mar 09, 2020
  6. Mar 06, 2020
  7. Mar 03, 2020
  8. Mar 02, 2020
  9. Feb 24, 2020
  10. Feb 11, 2020
  11. Feb 10, 2020
  12. Jan 31, 2020
  13. Jan 30, 2020
  14. Jan 29, 2020
  15. Jan 15, 2020
  16. Dec 09, 2019
  17. Nov 12, 2019
  18. Oct 29, 2019
  19. Oct 08, 2019
  20. Sep 19, 2019
  21. Sep 03, 2019
  22. Jul 12, 2019
  23. Jul 05, 2019
  24. Jun 22, 2019
  25. Jun 10, 2019
  26. Jun 07, 2019
  27. May 22, 2019
    • Florian Haas's avatar
      Notes: Weakly enforce a minimum allocated pacing time per slide · 23c12d73
      Florian Haas authored
      When using the totalTime-based pacing calculation, a presenter may
      inadvertently set totalTime and per-slide data-timing attributes in
      such a way that the pacing time for some slides is impossibly low or
      even negative.
      
      Add a check to ensure that the pacing on a slide never falls below a
      configurable minimum, defaulting to 0. Display an alert if the
      pacing for any slide(s) falls below the threshold.
      23c12d73
  28. May 20, 2019
  29. May 13, 2019
  30. May 12, 2019
    • Florian Haas's avatar
      Notes: Introduce alternate pacing timer, based on total presentation time · 078ba620
      Florian Haas authored
      The current pacing timer operates on the assumption that there is
      a default amount of time to be allocated to each slide, and that
      individual slides can deviate from that default by specifying their
      own data-timing attribute.
      
      This patch introduces an alternate pacing method: by specifying
      the totalTime configuration option, the presenter can set the total
      time available to present. The pacing timer will then continue to
      allocate the exact pacing time for slides that do have data-timing
      set, as before. However, rather than applying the defaultTiming
      constant to all others, it will
      
      - Add up the time already allocated to slides via data-timing;
      - subtract that from totalTime;
      - divide the difference by the number of slides without data-timing set;
      - apply the thus-calculated average to those slides.
      
      totalTime has no default, and if both defaultTiming and totalTime are
      set, totalTime wins. This preserves backward compatibility: if a
      presenter has set defaultTiming and updates reveal.js, totalTime will
      be null and defaultTiming is still applied to all slides without a
      data-timing attribute. The presenter can then switch to the automatic
      calculation, if desired, by setting a value for totalTime.
      078ba620
  31. May 05, 2019
Loading