diff options
author | Hakim El Hattab | 2014-09-10 11:28:29 +0200 |
---|---|---|
committer | Hakim El Hattab | 2014-09-10 11:28:29 +0200 |
commit | 03c3031cb4de22f2cd8070547c2bb8085d435c69 (patch) | |
tree | 302422e38d03fade57ecc3c6173b01727578ac92 /js | |
parent | 0d14d87f1a039584eaa5c9720b30b154e6b2e10e (diff) |
cleanup classes when backgrounds are synced
Diffstat (limited to 'js')
-rw-r--r-- | js/reveal.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/js/reveal.js b/js/reveal.js index 3cc1cae..a0b92ac 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -716,6 +716,10 @@ container.appendChild( element ); + // If backgrounds are being recreated, clear old classes + slide.classList.remove( 'has-dark-background' ); + slide.classList.remove( 'has-light-background' ); + // If this slide has a background color, add a class that // signals if it is light or dark. If the slide has no background // color, no class will be set |