3d05cf68f0
CDN can still be used via a configuration parameter. This way, development and presentation can be done locally with no network dependency.
11 lines
285 B
JavaScript
Executable file
11 lines
285 B
JavaScript
Executable file
Reveal.addEventListener( 'ready', function() {
|
|
|
|
QUnit.module( 'Markdown' );
|
|
|
|
QUnit.test( 'Vertical separator', function( assert ) {
|
|
assert.strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' );
|
|
});
|
|
|
|
} );
|
|
|
|
Reveal.initialize();
|