aboutsummaryrefslogtreecommitdiffhomepage
path: root/js
diff options
context:
space:
mode:
authorHakim El Hattab2011-12-22 21:25:15 -0800
committerHakim El Hattab2011-12-22 21:25:15 -0800
commit9065114ef040023785d0a08c7e419f3b6b9570b8 (patch)
tree3aa412409fbc631fc26190ece6add145af9a18b9 /js
parent91c3056a62879e39d0536fd9b846795881de38e0 (diff)
progress bar is now a div and uses the same transition + easing as slides (fixes #6)
Diffstat (limited to 'js')
-rw-r--r--js/reveal.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/reveal.js b/js/reveal.js
index c332324..79437ae 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -94,7 +94,8 @@ var Reveal = (function(){
*/
function initialize( options ) {
// Cache references to DOM elements
- dom.progress = document.querySelector( 'body>progress' );
+ dom.progress = document.querySelector( 'body>.progress' );
+ dom.progressbar = document.querySelector( 'body>.progress span' );
dom.controls = document.querySelector( '.controls' );
dom.controlsLeft = document.querySelector( '.controls .left' );
dom.controlsRight = document.querySelector( '.controls .right' );
@@ -122,7 +123,6 @@ var Reveal = (function(){
if( config.progress ) {
dom.progress.style.display = 'block';
- dom.progress.max = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ).length - 1;
}
if( config.theme !== 'default' ) {
@@ -313,7 +313,7 @@ var Reveal = (function(){
// Update progress if enabled
if( config.progress ) {
- dom.progress.value = indexh;
+ dom.progressbar.style.width = ( indexh / ( document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ).length - 1 ) ) * window.innerWidth + 'px';
}
updateControls();