Skip to content

Instantly share code, notes, and snippets.

@SilentKernel
Created February 2, 2021 12:48
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 SilentKernel/c1d1365fa3f63cc26a0981923ae18198 to your computer and use it in GitHub Desktop.
Save SilentKernel/c1d1365fa3f63cc26a0981923ae18198 to your computer and use it in GitHub Desktop.
if (window.navigator.share) {
navigator.share({
title: 'Titre',
text: 'Texte',
url: 'https://google.com',
}).catch(function () {
// Attention, le "catch" est trigger si l'utilisateur annule le partage
});
} else {
// Si le navigateur ne supporte pas le partage natif
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment