Page 1 of 1

How to get the gamelog of an ongoing game?

Posted: 21 August 2015, 15:15
by Gedrin
Hi all;

So I have been trying to find a way to get the game log of a game in progress and cant seem to find it.
I see that there are little arrows at the bottom of the recent moves log on the right and if you click, click, click...click, click, click you can get the entire log but is there an easier way to do this?

I'd like to see something like what is presented when you "replay a game" but before you have picked a player.

Thanks

Re: How to get the gamelog of an ongoing game?

Posted: 22 August 2015, 22:45
by pikiou
All you have to do to show the whole log is to extend the maxHeight CSS value of the 'logs' HTML element to say 1000000px.
You can do it manually if you know how, or simply execute the following code in your JavaScript console:

Code: Select all

dojo.style('logs', 'maxHeight', '1000000px');

Re: How to get the gamelog of an ongoing game?

Posted: 24 August 2015, 17:41
by Gedrin
Thanks... that worked well.