Merge pull request #83 from basecode/patch-slidechange
slidechange doesn't get fired on "hashchange" events
This commit is contained in:
commit
54e59d02d4
10
js/reveal.js
10
js/reveal.js
@ -765,12 +765,12 @@ var Reveal = (function(){
|
|||||||
function readURL() {
|
function readURL() {
|
||||||
// Break the hash down to separate components
|
// Break the hash down to separate components
|
||||||
var bits = window.location.hash.slice(2).split('/');
|
var bits = window.location.hash.slice(2).split('/');
|
||||||
|
|
||||||
// Read the index components of the hash
|
// Read the index components of the hash
|
||||||
indexh = parseInt( bits[0] ) || 0 ;
|
var h = parseInt( bits[0] ) || 0 ;
|
||||||
indexv = parseInt( bits[1] ) || 0 ;
|
var v = parseInt( bits[1] ) || 0 ;
|
||||||
|
|
||||||
navigateTo( indexh, indexv );
|
navigateTo( h, v );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user