document.addEventListener("DOMContentLoaded", function(e) { var homeButton = document.createElement("sheep-btn"); homeButton.setAttribute('tabindex', 0); homeButton.setAttribute('aria-label', 'Go to SheepTester directory'); homeButton.setAttribute('role', 'button'); homeButton.addEventListener('click', function(e) { document.body.classList.add('sheep-blockscreen'); homeButton.addEventListener('transitionend', function(e) { window.requestAnimationFrame(function() { // Try forcing repaint homeButton.getBoundingClientRect(); window.location = '/?from=sheep3'; }); }); }); homeButton.addEventListener('keydown', function(e) { if (e.keyCode === 13) homeButton.click(); }); document.body.appendChild(homeButton); }, {once: true}); //var url = window.location.toString(); //window.location = url.replace('netlify.app', 'onrender.com');