CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

| Download
Project: KOB1
Views: 16973
1
2
Reveal.addEventListener( 'ready', function() {
3
4
// Only one test for now, we're mainly ensuring that there
5
// are no execution errors when running PDF mode
6
7
test( 'Reveal.isReady', function() {
8
strictEqual( Reveal.isReady(), true, 'returns true' );
9
});
10
11
12
} );
13
14
Reveal.initialize({ pdf: true });
15
16
17