From d7c42361bda4c64a0594a8640156a504fc334f11 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Sun, 29 Jul 2007 10:39:34 -0700 Subject: LAYOUT: final score is displayed on the table; played card is displayed in trick added another trick as trick13 that displays the final score. Also moved the played card to show up as a normal card and not in the middle of the table anymore. --- output.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'output.php') diff --git a/output.php b/output.php index 6d84128..ddea3b8 100644 --- a/output.php +++ b/output.php @@ -25,7 +25,6 @@ function output_ask_for_new_game($playerA,$playerB,$playerC,$playerD,$oldgameid) global $RULES; echo "Do you want to continue playing?(This will start a new game, with the next person as dealer.)\n"; - echo "
\n"; echo " \n"; echo " \n"; echo " \n"; @@ -35,7 +34,6 @@ function output_ask_for_new_game($playerA,$playerB,$playerC,$playerD,$oldgameid) echo " \n"; echo " \n"; echo " \n"; - echo "
\n"; return; } @@ -296,7 +294,7 @@ function output_header() function hl(num) { if(document.getElementById){ var i; - for(i=1;i<13;i++){ + for(i=1;i<14;i++){ if(document.getElementById("trick"+i)) document.getElementById("trick"+i).style.display = 'none'; } @@ -306,7 +304,7 @@ function output_header() function high_last(){ if(document.getElementById){ var i; - for(i=12;i>0;i--) { + for(i=13;i>0;i--) { if(document.getElementById("trick"+i)) { hl(i); -- cgit v1.2.3-18-g5258