simplify how data-autoslide is picked up from fragments #766
This commit is contained in:
@ -63,6 +63,10 @@ Reveal.addEventListener( 'ready', function() {
|
||||
Reveal.configure({ autoSlide: 10000 });
|
||||
strictEqual( Reveal.isAutoSliding(), true, 'true after starting' );
|
||||
|
||||
Reveal.toggleAutoSlide();
|
||||
strictEqual( Reveal.isAutoSliding(), false, 'false after toggling' );
|
||||
Reveal.toggleAutoSlide();
|
||||
|
||||
Reveal.configure({ autoSlide: 0 });
|
||||
strictEqual( Reveal.isAutoSliding(), false, 'false after setting to 0' );
|
||||
});
|
||||
|
Reference in New Issue
Block a user