aboutsummaryrefslogtreecommitdiff
path: root/static/js/share.js
blob: 6f0824360f7182c83838a9e75aca58f000e2d0b2 (plain) (blame)
1
2
3
async function shareQuote(title, text, url) {
    await navigator.share({title, text, url});
}