diff options
author | Rick Lupton <r.lupton@gmail.com> | 2013-06-16 22:25:37 +0100 |
---|---|---|
committer | Rick Lupton <r.lupton@gmail.com> | 2013-06-16 22:25:37 +0100 |
commit | d355a040616b40dd76f82414c569acb23ef0595c (patch) | |
tree | 6c2625bf6e6695172d4d8ae8c17c0bcc010d403e /js/reveal.js | |
parent | 510839ab04a46005319480d99c1e676d6881e213 (diff) | |
download | fosdem-2018-presentation-d355a040616b40dd76f82414c569acb23ef0595c.tar fosdem-2018-presentation-d355a040616b40dd76f82414c569acb23ef0595c.tar.gz |
Fix jshint test
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/reveal.js b/js/reveal.js index 51b84ea..132237a 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -1758,8 +1758,8 @@ var Reveal = (function(){ var previousSlide = document.querySelector( HORIZONTAL_SLIDES_SELECTOR + '.past:nth-child(' + indexh + ')' ); if( previousSlide ) { - var v = ( previousSlide.querySelectorAll( 'section' ).length - 1 ) || undefined, - h = indexh - 1; + var v = ( previousSlide.querySelectorAll( 'section' ).length - 1 ) || undefined; + var h = indexh - 1; slide( h, v ); } } |