diff options
author | Hakim El Hattab | 2014-09-28 13:05:53 +0200 |
---|---|---|
committer | Hakim El Hattab | 2014-09-28 13:05:53 +0200 |
commit | e7b9e95369c36ba50212d2d5d913d9043318c18b (patch) | |
tree | babd56f0b7ca82f0e3069ed190d57fc475098c0a /README.md | |
parent | 36cdaefdfd5e0f6111f111dea8acdc81d95cc790 (diff) |
remove classList condition from unrelated dependencies
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -209,13 +209,13 @@ Reveal.initialize({ { src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }, // Zoom in and out with Alt+click - { src: 'plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } }, + { src: 'plugin/zoom-js/zoom.js', async: true }, // Speaker notes - { src: 'plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } }, + { src: 'plugin/notes/notes.js', async: true }, // Remote control your reveal.js presentation using a touch device - { src: 'plugin/remotes/remotes.js', async: true, condition: function() { return !!document.body.classList; } }, + { src: 'plugin/remotes/remotes.js', async: true }, // MathJax { src: 'plugin/math/math.js', async: true } |