Hi have the following problem : I want to delay this call by 400ms : game.setAllowedMoves(this_game.allowed_moves)
setTimeout("game.setAllowedMoves(this_game.allowed_moves)") does not
work as it's executed in the global context.
Any idea how to do this ?

