summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorHakim El Hattab2019-06-10 07:38:57 +0200
committerHakim El Hattab2019-06-10 07:38:57 +0200
commit5fb743e65e1da9cfc30b169d026e870878840124 (patch)
tree66d539a10702733e321df12cb2616d2b3ffb2478
parentc92d08acddd4a71a2857ddd4ed41e3ef4c5f928e (diff)
rephrased #2378
-rw-r--r--README.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/README.md b/README.md
index d0d33ca..f0a1220 100644
--- a/README.md
+++ b/README.md
@@ -1292,8 +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.
+Note that reveal.js will *not* wait for the fullfillment of init promises if your plugin is loaded as an [async dependency](#dependencies). If the plugin's 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