make #2350 work using replaceState
This commit is contained in:
parent
ae556d0844
commit
b8de5e02d2
13
js/reveal.js
13
js/reveal.js
@ -4290,19 +4290,24 @@
|
|||||||
writeURLTimeout = setTimeout( writeURL, delay );
|
writeURLTimeout = setTimeout( writeURL, delay );
|
||||||
}
|
}
|
||||||
else if( currentSlide ) {
|
else if( currentSlide ) {
|
||||||
|
// If we're configured to push to history OR the history
|
||||||
|
// API is not avaialble.
|
||||||
if( config.history || !window.history ) {
|
if( config.history || !window.history ) {
|
||||||
window.location.hash = locationHash();
|
window.location.hash = locationHash();
|
||||||
}
|
}
|
||||||
|
// If we're configured to refelct the current slide in the
|
||||||
|
// URL without pushing to history.
|
||||||
else if( config.hash ) {
|
else if( config.hash ) {
|
||||||
window.history.replaceState(null, null, '#' + locationHash());
|
window.history.replaceState( null, null, '#' + locationHash() );
|
||||||
}
|
}
|
||||||
|
// If history and hash are both disabled, a hash may still
|
||||||
|
// be added to the URL by clicking on a href with a hash
|
||||||
|
// target. Counter this by always removing the hash.
|
||||||
else {
|
else {
|
||||||
window.location.hash = '';
|
window.history.replaceState( null, null, window.location.pathname + window.location.search );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Retrieves the h/v location and fragment of the current,
|
* Retrieves the h/v location and fragment of the current,
|
||||||
|
Loading…
Reference in New Issue
Block a user