aboutsummaryrefslogtreecommitdiffhomepage
path: root/js/reveal.js
diff options
context:
space:
mode:
authorHakim El Hattab2013-06-04 19:51:06 +0200
committerHakim El Hattab2013-06-04 19:51:06 +0200
commitbfadfcc7ce8235ad90982aa5020731db9b2ee69c (patch)
tree5ff2f76281582921f43dc67e129432d408b97708 /js/reveal.js
parent90811b8709cb26d1db91247fb650c44621315a25 (diff)
don't transition to first slide background (#453)
Diffstat (limited to 'js/reveal.js')
-rw-r--r--js/reveal.js11
1 files changed, 10 insertions, 1 deletions
diff --git a/js/reveal.js b/js/reveal.js
index 7d8020f..edad911 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -252,6 +252,7 @@ var Reveal = (function(){
// Clear prior backgrounds
dom.background.innerHTML = '';
+ dom.background.classList.add( 'no-transition' );
// Helper method for creating a background element for the
// given slide
@@ -1463,10 +1464,13 @@ var Reveal = (function(){
}
/**
- *
+ * Updates the background elements to reflect the current
+ * slide.
*/
function updateBackground() {
+ // Update the classes of all backgrounds to match the
+ // states of their slides (past/present/future)
toArray( dom.background.childNodes ).forEach( function( backgroundh, h ) {
backgroundh.className = ( h < indexh ? 'past' : h > indexh ? 'future' : 'present' );
@@ -1479,6 +1483,11 @@ var Reveal = (function(){
} );
+ // Allow the first background to apply without transition
+ setTimeout( function() {
+ dom.background.classList.remove( 'no-transition' );
+ }, 1 );
+
}
/**