We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cffdf82 commit 037b514Copy full SHA for 037b514
views/assets/js/loader.js
@@ -29,6 +29,7 @@
29
fetch(destination.pathname + '.ico', { mode: 'same-origin' })
30
.then((response) => {
31
if (destination !== location && pushState) {
32
+ console.clear();
33
if (response.status === 200) history.pushState({}, '', destination);
34
else return location.assign(new URL(destination, location));
35
}
@@ -194,6 +195,7 @@
194
195
if (document.readyState === 'complete') loadPage()();
196
else addEventListener('load', loadPage());
197
addEventListener('popstate', () => {
198
199
loadPage(location, false)();
200
});
201
})();
0 commit comments