mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 09:45:04 +01:00
Allow custom events.
This commit is contained in:
parent
fd8df387c8
commit
0aa6cc939a
@ -61,12 +61,13 @@ import { removeTrailingSlash } from '../lib/url';
|
||||
const handlePush = (state, title, navigatedURL) => {
|
||||
removeEvents();
|
||||
currentRef = currentUrl;
|
||||
const newUrl = navigatedURL.toString();
|
||||
|
||||
if (navigatedURL.toString().startsWith('http')) {
|
||||
const url = new URL(navigatedURL.toString());
|
||||
if (newUrl.startsWith('http')) {
|
||||
const url = new URL(newUrl);
|
||||
currentUrl = `${url.pathname}${url.search}`;
|
||||
} else {
|
||||
currentUrl = navigatedURL.toString();
|
||||
currentUrl = newUrl;
|
||||
}
|
||||
|
||||
pageView();
|
||||
@ -101,4 +102,8 @@ import { removeTrailingSlash } from '../lib/url';
|
||||
/* Start */
|
||||
|
||||
pageView();
|
||||
|
||||
if (!window.umami) {
|
||||
window.umami = event_value => collect('event', { event_type: 'custom', event_value });
|
||||
}
|
||||
})(window);
|
||||
|
Loading…
Reference in New Issue
Block a user