Theme Files Update
This commit is contained in:
@ -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);}
|
||||
|
Reference in New Issue
Block a user