okteto.js 411 B

1234567891011121314151617
  1. function okteto() {
  2. fetch("/okteto", {
  3. method: "POST",
  4. credentials: "include",
  5. body: window.location.href
  6. })
  7. .then(response => response.text())
  8. .then((response) => {
  9. if (response == "WAIT") {
  10. setTimeout(() => {
  11. okteto();
  12. }, 5000);
  13. }
  14. })
  15. }
  16. okteto()