diff options
author | Hakim El Hattab | 2012-08-11 21:52:56 -0300 |
---|---|---|
committer | Hakim El Hattab | 2012-08-11 21:52:56 -0300 |
commit | 95898dc9e37046d9cd484159ed2700e89aa3abae (patch) | |
tree | ce3a6db937e385ee7a77391c42c26029594c5d2a /README.md | |
parent | 49e8e0d205dad7ad60d3eb060787a67b197ba1d1 (diff) |
document dependency loading
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -80,6 +80,26 @@ Reveal.initialize({ }); ``` +### Dependencies + +Reveal.js doesn't _rely_ on any third party scripts to work but a few optional libraries are included by default. These libraries are loaded as dependencies in the order they appear, for example: + +```javascript +Reveal.initialize({ + dependencies: [ + { src: 'lib/js/highlight.js', async: true, callback: function() { window.hljs.initHighlightingOnLoad(); } }, + { src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } } + ] +}); +``` + +You can add your own extensions using the same syntax. The following properties are available for each dependency object: +- **src**: Path to the script to load +- **async**: [optional] Flags if the script should load after reveal.js has started, defaults to false +- **callback**: [optional] Function to execute when the script has loaded +- **condition**: [optional] Function which must return true for the script to be loaded + + ### API The Reveal class provides a minimal JavaScript API for controlling navigation and reading state: |