mirror of
https://github.com/umami-software/umami.git
synced 2026-02-15 10:05:36 +01:00
Merge pull request #41 from snird/master
Collect urls in pushstate the same way as in initial load
This commit is contained in:
commit
8d27a0a846
2 changed files with 4 additions and 3 deletions
File diff suppressed because one or more lines are too long
|
|
@ -53,10 +53,11 @@ import { post, hook, doNotTrack } from '../lib/web';
|
||||||
|
|
||||||
/* Handle history */
|
/* Handle history */
|
||||||
|
|
||||||
const handlePush = (state, title, url) => {
|
const handlePush = (state, title, navaigatedUrl) => {
|
||||||
removeEvents();
|
removeEvents();
|
||||||
currentRef = currentUrl;
|
currentRef = currentUrl;
|
||||||
currentUrl = url;
|
const url = new URL(navaigatedUrl);
|
||||||
|
currentUrl = `${url.pathname}${url.search}`;
|
||||||
pageView();
|
pageView();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue