Merge pull request #2378 from mbotsch/fix-plugin-documentation

Fix plugin documentation regarding init-Promises
This commit is contained in:
Hakim El Hattab 2019-06-10 07:34:21 +02:00 committed by GitHub
commit c92d08acdd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -1292,6 +1292,7 @@ Reveal.addEventListener( 'ready', () => console.log( 'Three seconds later...' )
Reveal.initialize();
```
For plugins that are loaded as [dependencies](#dependencies), reveal.js will wait for the fullfillment of their init Promise only for the *non-async* plugins.
If the init method does _not_ return a Promise, the plugin is considered ready right away and will not hold up the reveal.js startup sequence.
### Retrieving Plugins