aboutsummaryrefslogtreecommitdiffhomepage
path: root/js
diff options
context:
space:
mode:
authorHakim El Hattab2011-12-22 00:00:29 -0800
committerHakim El Hattab2011-12-22 00:00:29 -0800
commitbdff009c74dec78c012b0d8c3961bb70639404c2 (patch)
tree96db94cab26c69672a293b120620a0dd4f2a810b /js
parent2026c9645c526ce3d5e8ffd34a92e8d1c16326a8 (diff)
added optional presentation progress bar
Diffstat (limited to 'js')
-rw-r--r--js/reveal.js20
1 files changed, 18 insertions, 2 deletions
diff --git a/js/reveal.js b/js/reveal.js
index 5afa24a..c332324 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -59,6 +59,9 @@
* - Support for themes at initialization (default/linear/concave)
* - Code highlighting via highlight.js
*
+ * version 1.1:
+ * - Optional progress bar UI element
+ *
* TODO:
* - Touch/swipe interactions
* - Presentation overview via keyboard shortcut
@@ -77,6 +80,7 @@ var Reveal = (function(){
// Configurations options, including;
// > {Boolean} controls
+ // > {Boolean} progress
// > {String} theme
// > {Boolean} rollingLinks
config = {},
@@ -90,6 +94,7 @@ var Reveal = (function(){
*/
function initialize( options ) {
// Cache references to DOM elements
+ dom.progress = document.querySelector( 'body>progress' );
dom.controls = document.querySelector( '.controls' );
dom.controlsLeft = document.querySelector( '.controls .left' );
dom.controlsRight = document.querySelector( '.controls .right' );
@@ -108,12 +113,18 @@ var Reveal = (function(){
// Fall back on default options
config.rollingLinks = options.rollingLinks === undefined ? true : options.rollingLinks;
config.controls = options.controls === undefined ? false : options.controls;
+ config.progress = options.progress === undefined ? false : options.progress;
config.theme = options.theme === undefined ? 'default' : options.theme;
if( config.controls ) {
dom.controls.style.display = 'block';
}
+ if( config.progress ) {
+ dom.progress.style.display = 'block';
+ dom.progress.max = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ).length - 1;
+ }
+
if( config.theme !== 'default' ) {
document.body.classList.add( config.theme );
}
@@ -238,8 +249,8 @@ var Reveal = (function(){
for( var i = 0, len = nodes.length; i < len; i++ ) {
var node = nodes[i];
-
- if( !node.className || !node.className.match( /roll/g ) ) {
+
+ if( node.textContent && ( !node.className || !node.className.match( /roll/g ) ) ) {
node.className += ' roll';
node.innerHTML = '<span data-title="'+ node.text +'">' + node.innerHTML + '</span>';
}
@@ -300,6 +311,11 @@ var Reveal = (function(){
indexh = updateSlides( HORIZONTAL_SLIDES_SELECTOR, indexh );
indexv = updateSlides( VERTICAL_SLIDES_SELECTOR, indexv );
+ // Update progress if enabled
+ if( config.progress ) {
+ dom.progress.value = indexh;
+ }
+
updateControls();
writeURL();