add getTotalSlides #858

This commit is contained in:
Hakim El Hattab 2014-04-01 09:12:41 +02:00
parent 1de159c4f4
commit 9947b7a532
2 changed files with 14 additions and 3 deletions

View file

@ -2392,6 +2392,15 @@ var Reveal = (function(){
}
/**
* Retrieves the total number of slides in this presentation.
*/
function getTotalSlides() {
return document.querySelectorAll( SLIDES_SELECTOR + ':not(.stack)' ).length;
}
/**
* Retrieves the current state of the presentation as
* an object. This state can then be restored at any
@ -3457,6 +3466,8 @@ var Reveal = (function(){
// Returns the indices of the current, or specified, slide
getIndices: getIndices,
getTotalSlides: getTotalSlides,
// Returns the slide at the specified index, y is optional
getSlide: function( x, y ) {
var horizontalSlide = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR )[ x ];

6
js/reveal.min.js vendored

File diff suppressed because one or more lines are too long