mirror of
https://github.com/Threnklyn/reveal-hugo.git
synced 2026-05-18 21:03:29 +02:00
3d05cf68f0
CDN can still be used via a configuration parameter. This way, development and presentation can be done locally with no network dependency.
12 lines
285 B
JavaScript
Executable File
12 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();
|