shorgru/static/js/share.js

3 lines
94 B
JavaScript
Raw Normal View History

2024-10-06 17:04:37 +03:00
async function shareQuote(title, text, url) {
await navigator.share({title, text, url});
}