Skip to content

Instantly share code, notes, and snippets.

@bogas04
Created September 22, 2017 15:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bogas04/50eae983a9b478e172a22bb9fce9c77e to your computer and use it in GitHub Desktop.
Save bogas04/50eae983a9b478e172a22bb9fce9c77e to your computer and use it in GitHub Desktop.
Web Share API Example
async handleClick (e) {
// feature detection
if ('share' in navigator) {
try {
await navigator.share({
title: 'Click-bait title #6314',
url: 'http://www.theuselessweb.com/'
});
} catch (err) {
console.error(err);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment