diff options
author | Hakim El Hattab | 2013-06-10 08:55:59 +0200 |
---|---|---|
committer | Hakim El Hattab | 2013-06-10 08:55:59 +0200 |
commit | abb4ca8f2da34245b82931fcf99bede3e76d5481 (patch) | |
tree | e85fef2f23e43b3939beae8c227888ca7faee6d8 /js/reveal.js | |
parent | 8e348af8b8591bd6ae21282728e7510c47eb29fd (diff) |
rtl support for new sliding backgrounds
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/js/reveal.js b/js/reveal.js index b3ccffe..24960cd 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -1524,7 +1524,11 @@ var Reveal = (function(){ // states of their slides (past/present/future) toArray( dom.background.childNodes ).forEach( function( backgroundh, h ) { - backgroundh.className = 'slide-background ' + ( h < indexh ? 'past' : h > indexh ? 'future' : 'present' ); + // Reverse past/future classes when in RTL mode + var horizontalPast = config.rtl ? 'future' : 'past', + horizontalFuture = config.rtl ? 'past' : 'future'; + + backgroundh.className = 'slide-background ' + ( h < indexh ? horizontalPast : h > indexh ? horizontalFuture : 'present' ); toArray( backgroundh.childNodes ).forEach( function( backgroundv, v ) { |