Przeglądaj źródła

Atualização renderização

Gustavo Grancieiro 3 lat temu
rodzic
commit
735ad4e8e1
1 zmienionych plików z 4 dodań i 4 usunięć
  1. 4 4
      ihanoi/js/ihanoi.js

+ 4 - 4
ihanoi/js/ihanoi.js

@@ -601,18 +601,18 @@ function preparaAutomatico ()
   resolveAutomatico(nDiscos, 0, 2 ,1);
   max = mov.length - 1;
 
-  setTimeout( fazMovimento, 1000 );
+  setTimeout(fazMovimento, 1000);
   }
 
 function fazMovimento ()
 {
-  movaHaste( mov[indiceMovimento] );
-  movaHaste( mov[indiceMovimento + 1] );
+  movaHaste(mov[indiceMovimento]);
+  movaHaste(mov[indiceMovimento + 1]);
   indiceMovimento += 2;
 
   if (indiceMovimento >= max) return;
 
-  setTimeout( fazMovimento, 1000 );
+  setTimeout(fazMovimento, 1000);
 
 }
 // -------------------- FIM DA ATUALIZACAO --------------------