From 8e6d384500dc520fb70551495abe262c46ef8b93 Mon Sep 17 00:00:00 2001 From: matt Date: Wed, 23 Apr 2025 21:30:49 +0200 Subject: [PATCH] fixes --- link-collection/lego-tiny-plants/index.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/link-collection/lego-tiny-plants/index.html b/link-collection/lego-tiny-plants/index.html index 4bed169..a141a7d 100644 --- a/link-collection/lego-tiny-plants/index.html +++ b/link-collection/lego-tiny-plants/index.html @@ -335,27 +335,27 @@ // Teilen via WhatsApp function shareViaWhatsApp() { - const text = encodeURIComponent('Check out this fantastic game!https://www.creative-crafter.de/link-collection/lego-tiny-plants/'); + const text = encodeURIComponent('Check out this fantastic toy!https://www.creative-crafter.de/link-collection/lego-tiny-plants/'); const url = 'https://api.whatsapp.com/send?text=' + text; window.open(url, '_blank'); } // Teilen via Telegram function shareViaTelegram() { - const text = encodeURIComponent('Check out this fantastic game!https://www.creative-crafter.de/link-collection/lego-tiny-plants/'); + const text = encodeURIComponent('Check out this fantastic toy!https://www.creative-crafter.de/link-collection/lego-tiny-plants/'); const url = 'https://t.me/share/url?url=' + text; window.open(url, '_blank'); } function shareViaPinterest() { - const text = encodeURIComponent('Check out this fantastic game!https://test.creative-crafter.de/link-collection/lego-tiny-plants/'); + const text = encodeURIComponent('Check out this fantastic toy!https://test.creative-crafter.de/link-collection/lego-tiny-plants/'); const url = 'https://pinterest.com/pin/create/button/?url=' + text; window.open(url, '_blank'); } function shareViaPinterest() { const media = encodeURIComponent('URL_ZU_DEINEM_BILD'); // Ersetze dies durch den tatsächlichen Bild-Link - const text = encodeURIComponent('Check out this fantastic game!https://www.creative-crafter.de/link-collection/lego-tiny-plants/'); + const text = encodeURIComponent('Check out this fantastic toy!https://www.creative-crafter.de/link-collection/lego-tiny-plants/'); const url = 'https://pinterest.com/pin/create/button/?url=' + text + '&media=' + media; window.open(url, '_blank'); } @@ -363,12 +363,12 @@ // Teilen via E-Mail function shareViaEmail() { const subject = encodeURIComponent('Klick the Witch'); - const body = encodeURIComponent('Check out this fantastic game!https://www.creative-crafter.de/link-collection/lego-tiny-plants/'); + const body = encodeURIComponent('Check out this fantastic toy!https://www.creative-crafter.de/link-collection/lego-tiny-plants/'); window.location.href = 'mailto:?subject=' + subject + '&body=' + body; } function copyToClipboard() { - const text = 'Check out this fantastic game!https://www.creative-crafter.de/link-collection/lego-tiny-plants/'; + const text = 'Check out this fantastic toy!https://www.creative-crafter.de/link-collection/lego-tiny-plants/'; navigator.clipboard.writeText(text).then(function() { alert('Text has been copied to the clipboard!'); }, function(err) {