From 13951164459d2ed2e0d6e02fbdc79bb6599c315b Mon Sep 17 00:00:00 2001 From: Henrik Askjer <henrik.askjer@uib.no> Date: Thu, 18 Nov 2021 15:17:49 +0100 Subject: [PATCH] specify what has been copied --- src/components/ArticleFooter.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/ArticleFooter.vue b/src/components/ArticleFooter.vue index c6989373..ec45b722 100644 --- a/src/components/ArticleFooter.vue +++ b/src/components/ArticleFooter.vue @@ -4,7 +4,7 @@ v-model='copy_popup' timeout="2000"> - <span class="text-center">Kopiert til utklippstavla</span> + <span class="text-center">{{what_copied}} kopiert til utklippstavla</span> <template v-slot:action="{ attrs }"> <v-btn color="primary" @@ -71,7 +71,8 @@ export default { data: function() { return { copy_popup: false, - citation_dialog: false + citation_dialog: false, + what_copied: null } }, @@ -104,6 +105,7 @@ export default { }, copy_link() { navigator.clipboard.writeText(this.create_link()); + this.what_copied = "Lenke" this.copy_popup = true }, @@ -112,6 +114,7 @@ export default { let citation = document.getElementById("citation").textContent; navigator.clipboard.writeText(citation) this.citation_dialog = false + this.what_copied = "Sitering" this.copy_popup = true }, -- GitLab