Selaa lähdekoodia

rtl support for new sliding backgrounds

Hakim El Hattab 11 vuotta sitten
vanhempi
sitoutus
abb4ca8f2d
2 muutettua tiedostoa jossa 6 lisäystä ja 2 poistoa
  1. 5 1
      js/reveal.js
  2. 1 1
      js/reveal.min.js

+ 5 - 1
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 ) {
 

Tiedoston diff-näkymää rajattu, sillä se on liian suuri
+ 1 - 1
js/reveal.min.js


Kaikkia tiedostoja ei voida näyttää, sillä liian monta tiedostoa muuttui tässä diffissä