Remove assignment to `indexv` and `indexh` to trigger 'onslidechange' at startup...
authorTobi Reiss <tag+github@basecode.de>
Tue, 17 Jul 2012 08:05:55 +0000 (10:05 +0200)
committerTobi Reiss <tag+github@basecode.de>
Tue, 17 Jul 2012 08:05:55 +0000 (10:05 +0200)
js/reveal.js

index 9276da3a6a138c155ded65ab67e2757571c7806a..c9e69a8f8b372e5688a18bcc7a9b6c96ea69ff13 100644 (file)
@@ -765,12 +765,12 @@ var Reveal = (function(){
        function readURL() {
                // Break the hash down to separate components
                var bits = window.location.hash.slice(2).split('/');
-               
+
                // Read the index components of the hash
-               indexh = parseInt( bits[0] ) || 0 ;
-               indexv = parseInt( bits[1] ) || 0 ;
-               
-               navigateTo( indexh, indexv );
+               var h = parseInt( bits[0] ) || 0 ;
+               var v = parseInt( bits[1] ) || 0 ;
+
+               navigateTo( h, v );
        }
        
        /**