aboutsummaryrefslogtreecommitdiffhomepage
path: root/js/reveal.js
diff options
context:
space:
mode:
authorHakim El Hattab2012-11-18 12:10:16 -0500
committerHakim El Hattab2012-11-18 12:10:16 -0500
commit363685967d4c75a22e67d71ab1c7698b0a5eb7a2 (patch)
tree10fdb2788fc95d96c322801558480602b09c4352 /js/reveal.js
parent0402fbde0c53824a0f279bdc1f44bd967ce35cb2 (diff)
adjust rtl implementation (#166)
Diffstat (limited to 'js/reveal.js')
-rw-r--r--js/reveal.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/reveal.js b/js/reveal.js
index f683609..84e362f 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -318,7 +318,7 @@ var Reveal = (function(){
}
if( config.rtl ) {
- dom.slides.style.direction = 'rtl';
+ dom.wrapper.classList.add( 'rtl' );
}
if( config.center ) {