2014-04-27 17:31:50 +02:00
|
|
|
Reveal.addEventListener( 'ready', function() {
|
|
|
|
|
|
|
|
// Only one test for now, we're mainly ensuring that there
|
|
|
|
// are no execution errors when running PDF mode
|
|
|
|
|
2018-01-22 15:35:15 +01:00
|
|
|
QUnit.test( 'Reveal.isReady', function( assert ) {
|
|
|
|
assert.strictEqual( Reveal.isReady(), true, 'returns true' );
|
2014-04-27 17:31:50 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
} );
|
|
|
|
|
|
|
|
Reveal.initialize({ pdf: true });
|