From 5526d07a64a70a96861771e82da8e2922d59c95f Mon Sep 17 00:00:00 2001 From: Raphael Parree Date: Tue, 2 Apr 2019 08:22:44 +0200 Subject: [PATCH] Changed solution for refollowing links using the history API --- js/reveal.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/reveal.js b/js/reveal.js index a2b68a649c2..a907f94aa99 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -3289,7 +3289,8 @@ } } else { // webyarns addition - window.location.hash = ''; + history.pushState("", document.title, window.location.pathname + + window.location.search); } }