Explorar o código

Atualização sleep()

Loop infinito
Gustavo Grancieiro %!s(int64=3) %!d(string=hai) anos
pai
achega
e32bde007e
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      ihanoi/js/integration-functions.js

+ 1 - 1
ihanoi/js/integration-functions.js

@@ -232,7 +232,7 @@ getiLMContent();
 
 function sleep (milliseconds) {
   var startSleep = new Date().getTime();
-  for (var i = 0; i < 1e7; i++) {
+  for (; ;) {
     if ((new Date().getTime() - startSleep) > milliseconds) {
       break;
       }