diff --git a/src/renderer/components/ft-share-button/ft-share-button.js b/src/renderer/components/ft-share-button/ft-share-button.js index 8b86f4dc3..ac9799c05 100644 --- a/src/renderer/components/ft-share-button/ft-share-button.js +++ b/src/renderer/components/ft-share-button/ft-share-button.js @@ -55,34 +55,42 @@ export default Vue.extend({ openInvidious() { this.open(this.invidiousURL) + this.$refs.iconButton.toggleDropdown() }, copyInvidious() { this.copy(this.invidiousURL) + this.$refs.iconButton.toggleDropdown() }, openYoutube() { this.open(this.youtubeURL) + this.$refs.iconButton.toggleDropdown() }, copyYoutube() { this.copy(this.youtubeURL) + this.$refs.iconButton.toggleDropdown() }, openYoutubeEmbed() { this.open(this.youtubeEmbedURL) + this.$refs.iconButton.toggleDropdown() }, copyYoutubeEmbed() { this.copy(this.youtubeEmbedURL) + this.$refs.iconButton.toggleDropdown() }, openInvidiousEmbed() { this.open(this.invidiousEmbedURL) + this.$refs.iconButton.toggleDropdown() }, copyInvidiousEmbed() { this.copy(this.invidiousEmbedURL) + this.$refs.iconButton.toggleDropdown() }, } }) diff --git a/src/renderer/components/ft-share-button/ft-share-button.vue b/src/renderer/components/ft-share-button/ft-share-button.vue index e1117767e..61ff16c64 100644 --- a/src/renderer/components/ft-share-button/ft-share-button.vue +++ b/src/renderer/components/ft-share-button/ft-share-button.vue @@ -1,5 +1,6 @@