mirror of
https://github.com/hakimel/reveal.js.git
synced 2025-01-18 05:48:32 +01:00
13 lines
321 B
JavaScript
13 lines
321 B
JavaScript
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 });
|