summaryrefslogtreecommitdiffhomepage
path: root/js/reveal.js
diff options
context:
space:
mode:
authorHakim El Hattab2013-04-16 08:59:35 -0400
committerHakim El Hattab2013-04-16 08:59:35 -0400
commit70b7ce360ca24393f44f14d102c9c119841f2d2a (patch)
tree4242d9bd499d61d7e3c11cc29e977c12791742fb /js/reveal.js
parent3f8f146466d49da7395ebdfc7671e8683c29c51a (diff)
return current fragment index through getIndices, replaces getCurrentFragmentIndex #395
Diffstat (limited to 'js/reveal.js')
-rw-r--r--js/reveal.js25
1 files changed, 11 insertions, 14 deletions
diff --git a/js/reveal.js b/js/reveal.js
index 516d114..0a06579 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -1445,13 +1445,14 @@ var Reveal = (function(){
* index will be for this slide rather than the currently
* active one
*
- * @return {Object} { h: <int>, v: <int> }
+ * @return {Object} { h: <int>, v: <int>, f: <int> }
*/
function getIndices( slide ) {
// By default, return the current indices
var h = indexh,
- v = indexv;
+ v = indexv,
+ f;
// If a slide is specified, return the indices of that slide
if( slide ) {
@@ -1470,7 +1471,14 @@ var Reveal = (function(){
}
}
- return { h: h, v: v };
+ if( !slide && currentSlide ) {
+ var visibleFragments = currentSlide.querySelectorAll( '.fragment.visible' );
+ if( visibleFragments.length ) {
+ f = visibleFragments.length;
+ }
+ }
+
+ return { h: h, v: v, f: f };
}
@@ -2050,17 +2058,6 @@ 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 = {};