From 6447b59ac51c3f399ae061ecb4e9275fc165f967 Mon Sep 17 00:00:00 2001 From: Hakim El Hattab Date: Fri, 1 Jul 2016 08:44:27 +0200 Subject: [PATCH] ready flag on .reveal container --- README.md | 1 + js/reveal.js | 2 ++ 2 files changed, 3 insertions(+) diff --git a/README.md b/README.md index fa6ec0e..cb72f23 100644 --- a/README.md +++ b/README.md @@ -348,6 +348,7 @@ Reveal.addEventListener( 'ready', function( event ) { } ); ``` +Note that we also add a `.ready` class to the `.reveal` element so that you can hook into this with CSS. ### Auto-sliding diff --git a/js/reveal.js b/js/reveal.js index 3f003d9..c37566a 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -454,6 +454,8 @@ loaded = true; + dom.wrapper.classList.add( 'ready' ); + dispatchEvent( 'ready', { 'indexh': indexh, 'indexv': indexv,