1. 29 jan., 2020 1 validation
  2. 23 oct., 2019 1 validation
  3. 22 août, 2019 1 validation
  4. 27 mai, 2019 1 validation
  5. 22 mai, 2019 1 validation
    • Florian Haas's avatar
      Notes: Weakly enforce a minimum allocated pacing time per slide · 23c12d73
      Florian Haas a écrit
      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
  6. 12 mai, 2019 1 validation
    • Florian Haas's avatar
      Notes: Introduce alternate pacing timer, based on total presentation time · 078ba620
      Florian Haas a écrit
      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
  7. 10 avr., 2019 1 validation
  8. 05 avr., 2019 2 validations
  9. 01 avr., 2019 1 validation
  10. 14 mar., 2019 2 validations
  11. 12 mar., 2019 3 validations
  12. 11 mar., 2019 2 validations
  13. 08 mar., 2019 1 validation
  14. 04 mar., 2019 2 validations
  15. 01 mar., 2019 1 validation
  16. 18 fév., 2019 1 validation
  17. 11 fév., 2019 1 validation
  18. 30 jan., 2019 1 validation
  19. 20 jan., 2019 1 validation
  20. 13 nov., 2018 1 validation
  21. 05 oct., 2018 1 validation
  22. 04 oct., 2018 3 validations
  23. 02 oct., 2018 1 validation
  24. 05 mai, 2018 1 validation
  25. 24 avr., 2018 1 validation
  26. 20 fév., 2018 2 validations
  27. 08 fév., 2018 2 validations
  28. 04 déc., 2017 1 validation
  29. 30 nov., 2017 1 validation
    • John MacFarlane's avatar
      Allow tex2jax options to be passed into math plugin. · 773569b4
      John MacFarlane a écrit
      Closes #2026.
      
      This does not change the default behavior of the math plugin,
      but it allows $ delimiters to be disabled (which is usually
      what you want, since otherwise normal uses of $ for currency get
      treated as math delimiters).
      
      To use:
      
          Reveal.initialize({
            math: {
              tex2jax: { inlineMath: [['\\(','\\)']],
                         skipTags: ['script','noscript','style',
                                    'textarea','pre'] }
                  },
            etc.
            });
      773569b4
  30. 23 nov., 2017 1 validation