Last active
June 19, 2026 12:03
-
-
Save kobitoDevelopment/7e6d3362f637722312154c60f1326fa6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <button class="share-button" type="button" data-open-share>共有する</button> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| document.querySelector("[data-open-share]").addEventListener("click", async () => { | |
| if (!navigator.share) return; | |
| try { | |
| await navigator.share({ | |
| title: document.title, | |
| url: location.href, | |
| }); | |
| } catch (error) { | |
| if (error.name !== "AbortError") throw error; | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment