浏览代码

Atualização renderização

Gustavo Grancieiro 3 年之前
父节点
当前提交
735ad4e8e1
共有 1 个文件被更改,包括 4 次插入4 次删除
  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 --------------------