Skip to content

Instantly share code, notes, and snippets.

@deanhume
Last active February 23, 2017 10:39
Show Gist options
  • Save deanhume/7a35be18ae5962153e71618db15a8ca6 to your computer and use it in GitHub Desktop.
Save deanhume/7a35be18ae5962153e71618db15a8ca6 to your computer and use it in GitHub Desktop.
Basic web share dialog
// Check if the Web Share API is supported
if (navigator.share !== undefined) {
// Share the resource
navigator.share({
title: document.title,
url: shareUrl
}).then(() => console.log('Successful share'))
.catch((error) => console.log('Error sharing:', error));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment