aboutsummaryrefslogtreecommitdiffhomepage
path: root/js/reveal.js
diff options
context:
space:
mode:
authorHakim El Hattab2013-08-15 08:51:11 -0400
committerHakim El Hattab2013-08-15 08:51:11 -0400
commitac3f021a14956b889fa7f243fcf41be793574648 (patch)
treedf47af868b973f76bd3dace5e71f6a95fb4e042b /js/reveal.js
parent6c0dc635a15edc6b4b09bb3aecdfd90399ae8ceb (diff)
add initial slide dom setup pass
Diffstat (limited to 'js/reveal.js')
-rw-r--r--js/reveal.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/js/reveal.js b/js/reveal.js
index 00097a1..88e694b 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -210,6 +210,26 @@ var Reveal = (function(){
}
/**
+ * Iterates through and decorates slides DOM elements with
+ * appropriate classes.
+ */
+ function setupSlides() {
+
+ var horizontalSlides = toArray( document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );
+ horizontalSlides.forEach( function( horizontalSlide ) {
+
+ var verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) );
+ verticalSlides.forEach( function( verticalSlide, y ) {
+
+ if( y > 0 ) verticalSlide.classList.add( 'future' );
+
+ } );
+
+ } );
+
+ }
+
+ /**
* Finds and stores references to DOM elements which are
* required by the presentation. If a required element is
* not found, it is created.
@@ -438,6 +458,9 @@ var Reveal = (function(){
// Make sure we've got all the DOM elements we need
setupDOM();
+ // Decorate the slide DOM elements with state classes (past/future)
+ setupSlides();
+
// Updates the presentation to match the current configuration values
configure();