Skip to content

Plugins for reveal.js 4.2 and higher

Compare
Choose a tag to compare
@rajgoel rajgoel released this 06 Sep 14:59
· 70 commits to master since this release
82888f7

A plugin collection for reveal.js 4.2 and higher

New features

  • Added loadcontent plugin
  • Plugins now work in strict mode

Breaking changes

  • In animate plugin, external svgs must now be loaded with loadcontent plugin. Thus, data-src is no longer supported to load external svg files to be animated. To migrate old animations add the loadcontent plugin and replace
<div data-animate data-src="graphics.svg">
<!-- External svg file to be animated will be added here -->
</div>

by

<div data-animate data-load="graphics.svg">
<!-- External svg file to be animated will be added here -->
</div>
  • Removed deprecated config from anything plugin
  • Removed deprecated buttons from chalkboard plugin (use customcontrols plugin instead)
  • Removed deprecated buttons from questions plugin (use customcontrols plugin instead)
  • Removed embed-tweet plugin, loadcontent plugin can be used instead
  • Seminar plugin now works with socket.io v4.6.1: Make sure to update seminar server and client library, e.g., by using
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/4.6.1/socket.io.js"></script>