diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2017-01-17 18:37:43 +0100 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2017-01-17 18:37:43 +0100 |
commit | 84090b882f99c1da5b73bbe04a9c74731e71dfc8 (patch) | |
tree | 4d72b22809e5ca3a453563bac4c079f909ab4ddf | |
parent | f9e5467000c3b644f7d585081e1d2ad1e12fec85 (diff) | |
download | fosdem-2018-presentation-84090b882f99c1da5b73bbe04a9c74731e71dfc8.tar fosdem-2018-presentation-84090b882f99c1da5b73bbe04a9c74731e71dfc8.tar.gz |
fix race condition by updating backgrounds after slide visibility
-rw-r--r-- | js/reveal.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/reveal.js b/js/reveal.js index 0caff7d..7f4783e 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -2395,9 +2395,9 @@ updateControls(); updateProgress(); - updateBackground( true ); updateSlideNumber(); updateSlidesVisibility(); + updateBackground( true ); updateNotes(); formatEmbeddedContent(); |