summaryrefslogtreecommitdiffhomepage
path: root/js/reveal.js
diff options
context:
space:
mode:
authorHakim El Hattab2013-05-05 18:40:08 -0400
committerHakim El Hattab2013-05-05 18:40:08 -0400
commit6b6c87db976d70d8080327197e5f00ace64c75bf (patch)
treec47124097e6fde08849f1dff4d700eabfdf86d84 /js/reveal.js
parent88eb0af776bce5e07a21d030142c335d3c77cab1 (diff)
add data-start-indexv #427
Diffstat (limited to 'js/reveal.js')
-rw-r--r--js/reveal.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/js/reveal.js b/js/reveal.js
index a4a71db..c985f79 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -748,7 +748,10 @@ var Reveal = (function(){
function getPreviousVerticalIndex( stack ) {
if( typeof stack === 'object' && typeof stack.setAttribute === 'function' && stack.classList.contains( 'stack' ) ) {
- return parseInt( stack.getAttribute( 'data-previous-indexv' ) || 0, 10 );
+ // Prefer manually defined start-indexv
+ var attributeName = stack.hasAttribute( 'data-start-indexv' ) ? 'data-start-indexv' : 'data-previous-indexv';
+
+ return parseInt( stack.getAttribute( attributeName ) || 0, 10 );
}
return 0;