rtl support for new sliding backgrounds

This commit is contained in:
Hakim El Hattab 2013-06-10 08:55:59 +02:00
parent 8e348af8b8
commit abb4ca8f2d
2 changed files with 7 additions and 3 deletions

View File

@ -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 ) {

4
js/reveal.min.js vendored

File diff suppressed because one or more lines are too long