fix bug that caused slideshow to break if an unexisting named link was used
parent
ffd3ea410b
commit
93f516d30d
|
@ -1894,7 +1894,7 @@ var Reveal = (function(){
|
||||||
}
|
}
|
||||||
// If the slide doesn't exist, navigate to the current slide
|
// If the slide doesn't exist, navigate to the current slide
|
||||||
else {
|
else {
|
||||||
slide( indexh, indexv );
|
slide( indexh || 0, indexv || 0 );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue