From 974c96319ff8e5582e75f7b863eab0074f66f4eb Mon Sep 17 00:00:00 2001 From: matt Date: Sat, 1 Feb 2025 15:57:51 +0100 Subject: [PATCH] =?UTF-8?q?neu=20wevadresse=20ge=C3=A4n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- programmieren/spiele/Flappy-Witch/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/programmieren/spiele/Flappy-Witch/index.html b/programmieren/spiele/Flappy-Witch/index.html index d1d721c..af28ac4 100644 --- a/programmieren/spiele/Flappy-Witch/index.html +++ b/programmieren/spiele/Flappy-Witch/index.html @@ -294,14 +294,14 @@ // Teilen via WhatsApp function shareViaWhatsApp() { - const text = encodeURIComponent('Schau dir dieses fantastische Spiel an! https://www.creative-crafter.de/programmieren/spiele/Flappy-Witch/'); + const text = encodeURIComponent('Schau dir dieses fantastische Spiel an! https://test.creative-crafter.de/programmieren/spiele/Flappy-Witch/'); const url = 'https://api.whatsapp.com/send?text=' + text; window.open(url, '_blank'); } // Teilen via Telegram function shareViaTelegram() { - const text = encodeURIComponent('Schau dir dieses fantastische Spiel an! https://www.creative-crafter.de/programmieren/spiele/Flappy-Witch/'); + const text = encodeURIComponent('Schau dir dieses fantastische Spiel an! https://test.creative-crafter.de/programmieren/spiele/Flappy-Witch/'); const url = 'https://t.me/share/url?url=' + text; window.open(url, '_blank'); } @@ -309,7 +309,7 @@ // Teilen via E-Mail function shareViaEmail() { const subject = encodeURIComponent('Flappy Witch'); - const body = encodeURIComponent('Schau dir dieses fantastische Spiel an! https://www.creative-crafter.de/programmieren/spiele/Flappy-Witch/'); + const body = encodeURIComponent('Schau dir dieses fantastische Spiel an! https://test.creative-crafter.de/programmieren/spiele/Flappy-Witch/'); window.location.href = 'mailto:?subject=' + subject + '&body=' + body; }