add data-start-indexv #427

This commit is contained in:
Hakim El Hattab 2013-05-05 18:40:08 -04:00
parent 88eb0af776
commit 6b6c87db97
2 changed files with 6 additions and 3 deletions

View File

@ -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;

4
js/reveal.min.js vendored

File diff suppressed because one or more lines are too long