increase timeout before drawing first level

This commit is contained in:
Gwenhael Le Moine 2011-07-13 22:21:45 +02:00
parent 6e485e4b50
commit 1bb267f698

View file

@ -356,5 +356,5 @@ function initialize_a_star( elt ) {
// kinda ugly workaround around a bug causing the canvas
// not to refresh the first time (before any event)
setTimeout( function(){ display_level( state, elt ); }, 1 );
setTimeout( function(){ display_level( state, elt ); }, 100 ); // 1/10 second
}