diff options
author | Hakim El Hattab | 2013-04-11 09:17:12 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-04-11 09:17:20 -0400 |
commit | 3999430b81125ce21e402849c54f4203efa80985 (patch) | |
tree | 7ef7fbefc69434a97906d9394ecdd18e110154c2 /js/reveal.js | |
parent | 25e0fbc050734dc21f9384aa0afd9a3c37c27816 (diff) | |
parent | 225662116982f13eb4e91d2c3d94a133c6d1b4ea (diff) |
merge mutiplex fragment fix #395
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/js/reveal.js b/js/reveal.js index c56ee2b..a0b88ce 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -2050,6 +2050,17 @@ var Reveal = (function(){ return config; }, + // Returns an index (1-based) of the current fragment + getCurrentFragmentIndex : function() { + if( currentSlide ) { + var visibleFragments = currentSlide.querySelectorAll( '.fragment.visible' ); + + if( visibleFragments.length ) { + return visibleFragments.length; + } + } + }, + // Helper method, retrieves query string as a key/value hash getQueryHash: function() { var query = {}; |