remove styles from #1030, simplify navigatePrev
This commit is contained in:
commit
6c7ba34edf
17
js/reveal.js
17
js/reveal.js
@ -3426,13 +3426,10 @@
|
|||||||
navigateUp();
|
navigateUp();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// Fetch the previous horizontal slide, if there is one
|
if( config.rtl ) {
|
||||||
var previousSlide = dom.wrapper.querySelector( HORIZONTAL_SLIDES_SELECTOR + '.past:nth-child(' + indexh + ')' );
|
navigateRight();
|
||||||
|
} else {
|
||||||
if( previousSlide ) {
|
navigateLeft();
|
||||||
var v = ( previousSlide.querySelectorAll( 'section' ).length - 1 ) || undefined;
|
|
||||||
var h = indexh - 1;
|
|
||||||
slide( h, v );
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -3446,7 +3443,11 @@
|
|||||||
|
|
||||||
// Prioritize revealing fragments
|
// Prioritize revealing fragments
|
||||||
if( nextFragment() === false ) {
|
if( nextFragment() === false ) {
|
||||||
availableRoutes().down ? navigateDown() : navigateRight();
|
if( config.rtl ) {
|
||||||
|
availableRoutes().down ? navigateDown() : navigateLeft();
|
||||||
|
} else {
|
||||||
|
availableRoutes().down ? navigateDown() : navigateRight();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// If auto-sliding is enabled we need to cue up
|
// If auto-sliding is enabled we need to cue up
|
||||||
|
Loading…
Reference in New Issue
Block a user