const thank_you_for_your_love = false; if (thank_you_for_your_love) { let refresh_timer = 15; $('h1.cover-heading').html('Thank you for your love!'); $('p.lead').html('Hang tight for a lil\' bit. Your love is about to be spread!
Your love receipt has been emailed to you.'); $('#donate_location').html(' Taking you back to the love zone in... 15'); const countDown = () => { if (refresh_timer != 1) { refresh_timer -= 1; $("#countdown_timer").html(refresh_timer); setTimeout(countDown, 1000); } else { $('#donate_location').html('Here we go!'); location.href = $(location)[0].pathname; } } setTimeout(countDown, 1000); }