Преглед на файлове

Don't scroll to top of page when closing popin

Pierre Rudloff преди 6 години
родител
ревизия
1b5aea63dc
променени са 1 файла, в които са добавени 5 реда и са изтрити 1 реда
  1. 5 1
      tarteaucitron.js

+ 5 - 1
tarteaucitron.js

@@ -767,7 +767,11 @@ var tarteaucitron = {
             "use strict";
 
             if (document.location.hash === tarteaucitron.hashtag) {
-                document.location.hash = '';
+                if (window.history) {
+                    window.history.replaceState('', document.title, window.location.pathname + window.location.search);
+                } else {
+                    document.location.hash = '';
+                }
             }
             tarteaucitron.userInterface.css('tarteaucitron', 'display', 'none');
             tarteaucitron.userInterface.css('tarteaucitronCookiesListContainer', 'display', 'none');