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; }