aboutsummaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2018-12-19 11:04:29 +0100
committerHakim El Hattab <hakim.elhattab@gmail.com>2018-12-19 11:04:29 +0100
commitb645828707cd9752055f2e2c237f977207c4ea73 (patch)
tree224f442393e90a7734ce2107f82aabe239dcea1d /js
parent6ef565c9fb85d0b20132475d7abce4b4c963d8c5 (diff)
downloadperl-software-in-gnu-guix-b645828707cd9752055f2e2c237f977207c4ea73.tar
perl-software-in-gnu-guix-b645828707cd9752055f2e2c237f977207c4ea73.tar.gz
ensure history api is available, default to hash: true with no history in demo #2286
Diffstat (limited to 'js')
-rw-r--r--js/reveal.js11
1 files changed, 6 insertions, 5 deletions
diff --git a/js/reveal.js b/js/reveal.js
index afbc35a..f3f4ae1 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -76,12 +76,13 @@
// Determine which displays to show the slide number on
showSlideNumber: 'all',
+ // Add the current slide number to the URL hash so that reloading the
+ // page/copying the URL will return you to the same slide
+ hash: false,
+
// Push each slide change to the browser history. Implies `hash: true`
history: false,
- // Change the hash when changing slides -- impacts browser history with `history: true`
- hash: false,
-
// Enable keyboard shortcuts for navigation
keyboard: true,
@@ -4148,10 +4149,10 @@
writeURLTimeout = setTimeout( writeURL, delay );
}
else if( currentSlide ) {
- if ( config.history ) {
+ if( config.history || !window.history ) {
window.location.hash = locationHash();
}
- else if ( config.hash ) {
+ else if( config.hash ) {
window.history.replaceState(null, null, '#' + locationHash());
}
}