diff options
author | Hakim El Hattab | 2013-01-14 09:29:02 -0500 |
---|---|---|
committer | Hakim El Hattab | 2013-01-14 09:29:02 -0500 |
commit | feaced800cdf47ebf93577ee1570974f096149d8 (patch) | |
tree | 52c05644a9c65106fe459caa6706b0b7d1c4a9f8 /js/reveal.js | |
parent | e46855096c4c467082737214d83e3552108c9b67 (diff) |
fix issue with navigateTo and fragments (closes #290)
Diffstat (limited to 'js/reveal.js')
-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 fd0d7f5..c33128d 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -846,7 +846,7 @@ var Reveal = (function(){ // Show fragment, if specified - if( ( indexh !== indexhBefore || indexv !== indexvBefore ) && f ) { + if( typeof f !== 'undefined' ) { var fragments = currentSlide.querySelectorAll( '.fragment' ); toArray( fragments ).forEach( function( fragment, indexf ) { |