From c8f913b1fb6ccdd2dc1d6599296c7531b5a783c9 Mon Sep 17 00:00:00 2001 From: Gnieark Date: Tue, 31 May 2016 16:59:21 +0200 Subject: [PATCH] fix js --- html/testBotScripts/tictactoe.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/testBotScripts/tictactoe.html b/html/testBotScripts/tictactoe.html index 2e1fc53..bd4d4ca 100644 --- a/html/testBotScripts/tictactoe.html +++ b/html/testBotScripts/tictactoe.html @@ -157,7 +157,7 @@ function startGame(){ var playerButton=createElem('input',{ 'type': 'button', 'id':'button' + j + '-' + i, - 'onclick':"playingAT('"j + '-' + i"');",'value':'-', + 'onclick':"playingAT('" + j + '-' + i + "');",'value':'-', 'class': 'hidden'} ); td.appendChild(playerButton);