mirror of
https://github.com/Threnklyn/reveal-hugo.git
synced 2026-05-18 21:03:29 +02:00
3d05cf68f0
CDN can still be used via a configuration parameter. This way, development and presentation can be done locally with no network dependency.
13 lines
321 B
JavaScript
Executable File
13 lines
321 B
JavaScript
Executable File
Reveal.addEventListener( 'ready', function() {
|
|
|
|
// Only one test for now, we're mainly ensuring that there
|
|
// are no execution errors when running PDF mode
|
|
|
|
QUnit.test( 'Reveal.isReady', function( assert ) {
|
|
assert.strictEqual( Reveal.isReady(), true, 'returns true' );
|
|
});
|
|
|
|
} );
|
|
|
|
Reveal.initialize({ pdf: true });
|