Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 767 Bytes

File metadata and controls

28 lines (24 loc) · 767 Bytes
title redirect_to
precommit
/features/precommit
You are being redirected to /features/precommit

Continue

in 4 second(s)

<script> var interval interval = setInterval(function() { var div = document.querySelector("#counter") var count = div.textContent * 1 - 1 div.textContent = count if (count <= 0) { window.location.replace("/features/precommit") clearInterval(interval) } }, 1000) </script>