Browse Source

add data-start-indexv #427

embed
Hakim El Hattab 12 years ago
parent
commit
6b6c87db97
  1. 5
      js/reveal.js
  2. 4
      js/reveal.min.js

5
js/reveal.js

@ -748,7 +748,10 @@ var Reveal = (function(){
function getPreviousVerticalIndex( stack ) { function getPreviousVerticalIndex( stack ) {
if( typeof stack === 'object' && typeof stack.setAttribute === 'function' && stack.classList.contains( '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; return 0;

4
js/reveal.min.js

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save