aboutsummaryrefslogtreecommitdiff
path: root/js/reveal.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/reveal.js')
-rw-r--r--js/reveal.js17
1 files changed, 9 insertions, 8 deletions
diff --git a/js/reveal.js b/js/reveal.js
index ef52ac6..4b1fbc8 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -3426,13 +3426,10 @@
navigateUp();
}
else {
- // Fetch the previous horizontal slide, if there is one
- var previousSlide = dom.wrapper.querySelector( HORIZONTAL_SLIDES_SELECTOR + '.past:nth-child(' + indexh + ')' );
-
- if( previousSlide ) {
- var v = ( previousSlide.querySelectorAll( 'section' ).length - 1 ) || undefined;
- var h = indexh - 1;
- slide( h, v );
+ if( config.rtl ) {
+ navigateRight();
+ } else {
+ navigateLeft();
}
}
}
@@ -3446,7 +3443,11 @@
// Prioritize revealing fragments
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