Hermit-V2 Theme Update

This commit is contained in:
GitHub Action
2023-12-17 08:27:09 +00:00
parent 112c04a660
commit 174f4938ca
56 changed files with 2906 additions and 0 deletions

7
assets/js/link-share.js Normal file
View File

@ -0,0 +1,7 @@
async function linkShare(t, u, s){
let shd = {title: t,text: s,url: u};
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);}
}else{console.log("Neither WebShare API nor CLipboard API is supported")}}