change SlidesNumber position and start page counter at 0 instead 1
authoruriel <aa@bb.cc>
Thu, 31 Oct 2013 17:47:13 +0000 (19:47 +0200)
committeruriel <aa@bb.cc>
Thu, 31 Oct 2013 17:47:13 +0000 (19:47 +0200)
css/reveal.css
js/reveal.js

index 4e5c8ea512bba7053d1b502b4c8504aed662b167..d5204d0111d636efba935c5bee58f3d47e0896d4 100644 (file)
@@ -486,10 +486,11 @@ body {
        opacity: 0.5; 
        z-index: 31;
        width: 110px;
-       bottom: 60px;
-       right: 11px;
+       bottom: 30px;
+       left: 11px;
        font-size: 12px;
        text-align: center;
+       letter-spacing: 0px
 }
 
 /*********************************************
index 136dc93386e243323dfe0641edc2932266a5f0a0..619d8d2d31d08b6a7c80af2c44099761abd02996 100644 (file)
@@ -1791,9 +1791,9 @@ var Reveal = (function(){
                        var element = dom.slideNumber;
 
                        // change the number of the page using 'indexh - indexv' format
-                       var indexString = ( indexh + 1 ).toString();
+                       var indexString = indexh;
                        if( indexv > 0 ) {
-                               indexString += ' - ' + indexv.toString();
+                               indexString += ' - ' + indexv;
                        }
 
                        element.innerHTML = indexString;