aboutsummaryrefslogtreecommitdiffhomepage
path: root/js
diff options
context:
space:
mode:
authorHakim El Hattab2012-03-24 12:36:34 -0400
committerHakim El Hattab2012-03-24 12:36:34 -0400
commit87529c4adcb047398da8416a2015d6a439f90f29 (patch)
treed1f81931374a02c49f238722dec433592cb25693 /js
parentb72bee32197ffa62ecd9f46512a977b67cab7473 (diff)
delay hash changes to avoid transition lag in chrome and enable history by default (closes #22)
Diffstat (limited to 'js')
-rw-r--r--js/reveal.js8
1 files changed, 6 insertions, 2 deletions
diff --git a/js/reveal.js b/js/reveal.js
index ba2cfd5..2ecd641 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -74,7 +74,10 @@ var Reveal = (function(){
document.body.style['OTransform'] !== undefined,
// Throttles mouse wheel navigation
- mouseWheelTimeout = 0;
+ mouseWheelTimeout = 0,
+
+ // Delays updates to the URL due to a Chrome thumbnailer bug
+ writeURLTimeout = 0;
/**
* Starts up the slideshow by applying configuration
@@ -490,7 +493,8 @@ var Reveal = (function(){
updateControls();
- writeURL();
+ clearTimeout( writeURLTimeout );
+ writeURLTimeout = setTimeout( writeURL, 1500 );
}
/**