From 8581b817d3d83194cc680db6e4824be75472c252 Mon Sep 17 00:00:00 2001 From: Gwenhael Le Moine Date: Wed, 13 Jul 2011 18:38:28 +0200 Subject: [PATCH] FIXME: don't display board until the first move is played --- star.js/js/star.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/star.js/js/star.js b/star.js/js/star.js index 21543a0..7acf888 100644 --- a/star.js/js/star.js +++ b/star.js/js/star.js @@ -322,5 +322,8 @@ function initialize_a_star( elt ) { $( elt ).html( starhtml ); state = load_level( levels, 0 ); +// display_level( state, options.dom_place ); + display_on_canvas( state, "starboard" ); + start_loop( state, elt ); }