aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--js/reveal.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/js/reveal.js b/js/reveal.js
index ca0dde6..81c100c 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -2463,6 +2463,15 @@
}
+ // If the slide has a light background, bubble that up as a
+ // class to .reveal container
+ if( currentSlide && currentSlide.classList.contains( 'has-light-background' ) ) {
+ dom.wrapper.classList.add( 'has-light-background' );
+ }
+ else {
+ dom.wrapper.classList.remove( 'has-light-background' );
+ }
+
// Allow the first background to apply without transition
setTimeout( function() {
dom.background.classList.remove( 'no-transition' );