Merge branch 'dev' of github.com:hakimel/reveal.js
This commit is contained in:
commit
31438c88ba
|
@ -499,6 +499,13 @@ By default, Reveal is configured with [highlight.js](http://softwaremaniacs.org/
|
||||||
</section>
|
</section>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Slide number
|
||||||
|
If you would like to display the page number of the current slide you can do so using the ```slideNumber``` configuration value.
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
Reveal.configure({ slideNumber: true });
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
### Overview mode
|
### Overview mode
|
||||||
|
|
||||||
|
|
16
test/test.js
16
test/test.js
|
@ -11,6 +11,22 @@
|
||||||
|
|
||||||
Reveal.addEventListener( 'ready', function() {
|
Reveal.addEventListener( 'ready', function() {
|
||||||
|
|
||||||
|
// ---------------------------------------------------------------
|
||||||
|
// DOM TESTS
|
||||||
|
|
||||||
|
QUnit.module( 'DOM' );
|
||||||
|
|
||||||
|
test( 'Initial slides classes', function() {
|
||||||
|
var horizontalSlides = document.querySelectorAll( '.reveal .slides>section' )
|
||||||
|
|
||||||
|
strictEqual( document.querySelectorAll( '.reveal .slides section.past' ).length, 0, 'no .past slides' );
|
||||||
|
strictEqual( document.querySelectorAll( '.reveal .slides section.present' ).length, 1, 'one .present slide' );
|
||||||
|
strictEqual( document.querySelectorAll( '.reveal .slides>section.future' ).length, horizontalSlides.length - 1, 'remaining horizontal slides are .future' );
|
||||||
|
|
||||||
|
strictEqual( document.querySelectorAll( '.reveal .slides section.stack' ).length, 2, 'two .stacks' );
|
||||||
|
|
||||||
|
ok( document.querySelectorAll( '.reveal .slides section.stack' )[0].querySelectorAll( '.future' ).length > 0, 'vertical slides are given .future' );
|
||||||
|
});
|
||||||
|
|
||||||
// ---------------------------------------------------------------
|
// ---------------------------------------------------------------
|
||||||
// API TESTS
|
// API TESTS
|
||||||
|
|
Loading…
Reference in New Issue
Block a user