Remove assignment to `indexv` and `indexh` to trigger 'onslidechange' at startup and onhashchange.

This commit is contained in:
Tobi Reiss 2012-07-17 10:05:55 +02:00
parent d5c2d0c03e
commit dd6c605826
1 changed files with 5 additions and 5 deletions

View 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 );
}
/**