Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
1837 views
1
Reveal.addEventListener( 'ready', function() {
2
3
// Only one test for now, we're mainly ensuring that there
4
// are no execution errors when running PDF mode
5
6
QUnit.test( 'Reveal.isReady', function( assert ) {
7
assert.strictEqual( Reveal.isReady(), true, 'returns true' );
8
});
9
10
} );
11
12
Reveal.initialize({ pdf: true });
13
14