bubble has-light-background to .reveal container
This commit is contained in:
parent
2479883d3c
commit
bc2974fef8
|
@ -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
|
// Allow the first background to apply without transition
|
||||||
setTimeout( function() {
|
setTimeout( function() {
|
||||||
dom.background.classList.remove( 'no-transition' );
|
dom.background.classList.remove( 'no-transition' );
|
||||||
|
|
Loading…
Reference in New Issue