1
0
mirror of https://github.com/hakimel/reveal.js.git synced 2025-10-29 12:46:34 +01:00

refactoring

This commit is contained in:
Hakim El Hattab
2023-10-06 10:07:19 +02:00
parent d84aa3472e
commit 1f1ca3a887
6 changed files with 19 additions and 13 deletions

View File

@@ -214,6 +214,8 @@ export default function( revealElement, options ) {
// Create slide backgrounds
backgrounds.update( true );
activateInitialView();
// Notify listeners that the presentation is ready but use a 1ms
// timeout to ensure it's not fired synchronously after #initialize()
setTimeout( () => {
@@ -232,11 +234,17 @@ export default function( revealElement, options ) {
});
}, 1 );
}
/**
* Activates the correct reveal.js view based on our config.
* This is only invoked once during initialization.
*/
function activateInitialView() {
const activatePrintView = config.view === 'print';
const activateReaderView = config.view === 'reader';
// Special setup and config is required when initializing a deck
// to be read or printed linearly
if( activatePrintView || activateReaderView ) {
if( activatePrintView ) {