Theme Files Update
This commit is contained in:
parent
dbfec60fde
commit
9be4cc1b9b
2 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
async function linkShare(t, u, s){
|
||||
let shd = {title: t,text: s,url: u};
|
||||
if(navigator.canShare(shd)){
|
||||
if(typeof navigator.canShare === "function" && navigator.canShare(shd)){
|
||||
try {await navigator.share(shd);} catch (er) {console.error(er);}
|
||||
}else if (navigator?.clipboard?.writeText){
|
||||
try {await navigator.clipboard.writeText(u);} catch (err) {console.error(err);}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue