Browse Source

fix bug that caused slideshow to break if an unexisting named link was used

embed
Hakim El Hattab 11 years ago
parent
commit
93f516d30d
  1. 2
      js/reveal.js
  2. 4
      js/reveal.min.js

2
js/reveal.js

@ -1894,7 +1894,7 @@ var Reveal = (function(){
}
// If the slide doesn't exist, navigate to the current slide
else {
slide( indexh, indexv );
slide( indexh || 0, indexv || 0 );
}
}
else {

4
js/reveal.min.js

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