Explorar o código

rtl support for new sliding backgrounds

Hakim El Hattab %!s(int64=11) %!d(string=hai) anos
pai
achega
abb4ca8f2d
Modificáronse 2 ficheiros con 6 adicións e 2 borrados
  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 ) {
 

A diferenza do arquivo foi suprimida porque é demasiado grande
+ 1 - 1
js/reveal.min.js


Algúns arquivos non se mostraron porque demasiados arquivos cambiaron neste cambio