aboutsummaryrefslogtreecommitdiffhomepage
path: root/js/reveal.js
diff options
context:
space:
mode:
authorHakim El Hattab2013-07-19 09:23:17 -0400
committerHakim El Hattab2013-07-19 09:23:22 -0400
commit5cb9a58938a5808c83d01f3c73ccb36edcbe0756 (patch)
tree5d378d12c8ac475036a1249d5b92bcda54e93b6e /js/reveal.js
parent1bb810e072869702fa6aafe085787a44b54d34f2 (diff)
remove delay from url update #530
Diffstat (limited to 'js/reveal.js')
-rw-r--r--js/reveal.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/js/reveal.js b/js/reveal.js
index 651b1be..560c94f 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -1338,10 +1338,6 @@ var Reveal = (function(){
activateOverview();
}
- // Update the URL hash after a delay since updating it mid-transition
- // is likely to cause visual lag
- writeURL( 1500 );
-
// Find the current horizontal slide and any possible vertical slides
// within it
var currentHorizontalSlide = horizontalSlides[ indexh ],
@@ -1413,6 +1409,9 @@ var Reveal = (function(){
updateProgress();
updateBackground();
+ // Update the URL hash
+ writeURL();
+
}
/**