Add UTM parameters
This commit is contained in:
parent
621ae06631
commit
a13b75eeb4
2 changed files with 4 additions and 2 deletions
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "JadedBlueEyes",
|
||||
"short_name": "Jade",
|
||||
"start_url": "/",
|
||||
"start_url": "/?utm_source=manifest",
|
||||
"display": "minimal-ui",
|
||||
"icons": [
|
||||
{
|
||||
|
|
|
|||
|
|
@ -18,10 +18,12 @@
|
|||
$: handleWebShare;
|
||||
const handleWebShare = async () => {
|
||||
try {
|
||||
let url = new URL(canonical)
|
||||
url.searchParams.set("utm_medium", "share")
|
||||
navigator.share({
|
||||
title: data.post.title,
|
||||
text: data.post.description,
|
||||
url: canonical,
|
||||
url: url.href,
|
||||
});
|
||||
} catch (error) {
|
||||
webShareAPISupported = false;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue