js debug output
This commit is contained in:
parent
f45994ebda
commit
145ab319f5
|
@ -66,6 +66,10 @@ function battleship(bot1,bot2,gridWidth,gridHeight,nbShip1,nbShip2,nbShip3,nbShi
|
|||
try{
|
||||
var grids = JSON.parse(xhr.responseText);
|
||||
for( var player=1; player <= 2 ; player ++){
|
||||
var p=createElem("p");
|
||||
p.innerHTML='Reponse joueurs:'xhr.responseText;
|
||||
document.getElementById('logs').appendChild(p);
|
||||
|
||||
for (var y=0; y < grids[player].length ; y++){
|
||||
for (var x=0; x < grids[player][y].length ; x++){
|
||||
if (grids[player][y][x] == 1){
|
||||
|
|
Loading…
Reference in New Issue
Block a user