diff options
author | Ira Abramov | 2014-10-11 18:59:36 +0300 |
---|---|---|
committer | Ira Abramov | 2014-10-11 18:59:36 +0300 |
commit | ccdb4ff248c9883c3f2e922e243ec426a918bfcb (patch) | |
tree | f44f5e8abe3e58588bca5c7e803a1d2299752149 /js | |
parent | 588472c5204a1a55db7b99627c4ac4477117ad37 (diff) |
Fix RTL Navigation with space bar
Diffstat (limited to 'js')
-rw-r--r-- | js/reveal.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/js/reveal.js b/js/reveal.js index a0b92ac..52cc615 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -3432,6 +3432,9 @@ if( previousSlide ) { var v = ( previousSlide.querySelectorAll( 'section' ).length - 1 ) || undefined; var h = indexh - 1; + if( config.rtl ) { + h = indexh + 1; + } slide( h, v ); } } @@ -3446,7 +3449,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 |