diff options
author | Hakim El Hattab | 2013-04-27 18:03:06 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-04-27 18:03:06 -0400 |
commit | 18795c161f2ea7d01fdadb9cca4d95c52e76d3db (patch) | |
tree | a30f8af9b5aac9c271425d3ae319957d085ac7ef /js/reveal.js | |
parent | 1dfcab906e75bbae73fd730fbdc4a7c5b72c00cb (diff) |
add config option for disabling all fragments
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/js/reveal.js b/js/reveal.js index c58f3dc..c2f3722 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -56,6 +56,9 @@ var Reveal = (function(){ // Change the presentation direction to be RTL rtl: false, + // Turns fragments on and off globally + fragments: true, + // Number of milliseconds between automatically proceeding to the // next slide, disabled when set to 0, this value can be overwritten // by using a data-autoslide attribute on your slides @@ -1401,7 +1404,7 @@ var Reveal = (function(){ */ function availableFragments() { - if( currentSlide ) { + if( currentSlide && config.fragments ) { var fragments = currentSlide.querySelectorAll( '.fragment' ); var hiddenFragments = currentSlide.querySelectorAll( '.fragment:not(.visible)' ); @@ -1543,7 +1546,7 @@ var Reveal = (function(){ */ function nextFragment() { - if( currentSlide ) { + if( currentSlide && config.fragments ) { var fragments = sortFragments( currentSlide.querySelectorAll( '.fragment:not(.visible)' ) ); if( fragments.length ) { @@ -1569,7 +1572,7 @@ var Reveal = (function(){ */ function previousFragment() { - if( currentSlide ) { + if( currentSlide && config.fragments ) { var fragments = sortFragments( currentSlide.querySelectorAll( '.fragment.visible' ) ); if( fragments.length ) { |