diff options
author | Michael Ekstrand | 2013-10-23 12:37:58 -0500 |
---|---|---|
committer | Michael Ekstrand | 2013-10-23 21:34:05 -0500 |
commit | 8473394643e4dd82242d8c823c3a69271d37a075 (patch) | |
tree | 9d2c35b1473ff923f8a55c116257946c8e9914fa /js/reveal.js | |
parent | c7077cf798326d820a520f2692c5ae29e2f7b4dd (diff) |
Support per-slide centering
If config.center is false, this change centers slides with the
'center' class.
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/reveal.js b/js/reveal.js index 3e9b160..c80eee4 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -1102,7 +1102,7 @@ var Reveal = (function(){ continue; } - if( config.center ) { + if( config.center || slide.classList.contains( 'center' ) ) { // Vertical stacks are not centred since their section // children will be if( slide.classList.contains( 'stack' ) ) { |