forked from campiaperti/infra
fixing an initialization bug when turning off controls and progress in initialization.
This commit is contained in:
parent
d2b6ed4726
commit
2767254d33
1 changed files with 5 additions and 2 deletions
|
@ -347,8 +347,11 @@ var Reveal = (function(){
|
||||||
|
|
||||||
dom.wrapper.classList.add( config.transition );
|
dom.wrapper.classList.add( config.transition );
|
||||||
|
|
||||||
dom.controls.style.display = ( config.controls && dom.controls ) ? 'block' : 'none';
|
if (dom.controls)
|
||||||
dom.progress.style.display = ( config.progress && dom.progress ) ? 'block' : 'none';
|
dom.controls.style.display = ( config.controls && dom.controls ) ? 'block' : 'none';
|
||||||
|
|
||||||
|
if (dom.progress)
|
||||||
|
dom.progress.style.display = ( config.progress && dom.progress ) ? 'block' : 'none';
|
||||||
|
|
||||||
if( config.rtl ) {
|
if( config.rtl ) {
|
||||||
dom.wrapper.classList.add( 'rtl' );
|
dom.wrapper.classList.add( 'rtl' );
|
||||||
|
|
Loading…
Reference in a new issue